Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pantchox/f261219fc4ee394671cd64dbebb05846 to your computer and use it in GitHub Desktop.
Save pantchox/f261219fc4ee394671cd64dbebb05846 to your computer and use it in GitHub Desktop.
JavaScript: Random Boolean
/* Random Boolean */
var randomNumber = Math.random() >= 0.5;
console.log(randomNumber);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment