Skip to content

Instantly share code, notes, and snippets.

@qwertie
Created August 7, 2018 19:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qwertie/8a1eb5a6723a2f54ed1f6f7362a99f09 to your computer and use it in GitHub Desktop.
Save qwertie/8a1eb5a6723a2f54ed1f6f7362a99f09 to your computer and use it in GitHub Desktop.
var y;
// Math.random() is a random number between 0 and 1
if (Math.random() < 0.5)
y = "Why?";
else
y = 25;
y = [y, y];
console.log(y); // print [25,25] or ["Why?","Why?"] in browser's console
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment