Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 

Repository files navigation

Magic_8_Balls

const question = "question string "; const randomNumber = Math.floor(Math.random() * 9) + 1; let answer = "";

if (randomNumber === 1){ answer = 'Yes - definitely'; } else if (randomNumber === 2) { answer = 'It is decidedly so'; } else if (randomNumber === 3) { answer = 'Without a doubt'; } else if (randomNumber === 4) { answer = 'Reply hazy, try again'; } else if (randomNumber === 5) { answer = 'Ask again later'; } else if (randomNumber === 6) { answer = 'Better not tell you now'; } else if (randomNumber === 7) { answer = 'My sources say no'; } else if (randomNumber === 8) { answer = 'Outlook not so good'; } else if (randomNumber === 9) { answer = 'Very doubtful'; } else { answer = 'Error'; }

console.log("Question: ", question); console.log("Answer: ", answer);

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors