Skip to content

Instantly share code, notes, and snippets.

@SolidShake
Forked from pavelbinar/gist:6333285
Created November 15, 2015 12:45
Show Gist options
  • Select an option

  • Save SolidShake/ed91694c647a998909ed to your computer and use it in GitHub Desktop.

Select an option

Save SolidShake/ed91694c647a998909ed 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