Skip to content

Instantly share code, notes, and snippets.

@pavelbinar
Last active July 27, 2022 07:49
Show Gist options
  • Star 22 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save pavelbinar/6333285 to your computer and use it in GitHub Desktop.
Save pavelbinar/6333285 to your computer and use it in GitHub Desktop.
JavaScript: Random Boolean
/* Random Boolean */
var randomNumber = Math.random() >= 0.5;
console.log(randomNumber);
@makandz
Copy link

makandz commented Jan 1, 2017

Wow awesome!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment