Skip to content

Instantly share code, notes, and snippets.

@Bijesse
Created July 24, 2014 19:19
Show Gist options
  • Save Bijesse/934329944e96b786c53e to your computer and use it in GitHub Desktop.
Save Bijesse/934329944e96b786c53e to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="JS-Intro" />
<meta charset=utf-8 />
<title>JS-Intro</title>
</head>
<body>
</body>
</html>
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