Created
July 24, 2014 19:22
-
-
Save Bijesse/692d09b966a823a9326d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="6 sided" content="6 sided" /> | |
<meta charset=utf-8 /> | |
<title>6 sided die</title> | |
</head> | |
<body> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var randZeroOne = Math.random(); | |
var randZeroFive = randZeroOne * 6; | |
var randOneSix = randZeroFive +1; | |
var randIntOneSix = Math.floor(randOneSix); | |
console.log(randIntOneSix); | |
console.log(Math.floor(Math.random() * 6)+ 1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment