Skip to content

Instantly share code, notes, and snippets.

@moh-slimani
Created December 30, 2019 19:54
Show Gist options
  • Save moh-slimani/dffc0b40a2bf2fbfe77825876b663d44 to your computer and use it in GitHub Desktop.
Save moh-slimani/dffc0b40a2bf2fbfe77825876b663d44 to your computer and use it in GitHub Desktop.
function flip() {
let x = Math.floor(Math.random() * 2)
if(x = 1) {
return "heads"
} else {
return "tails"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment