Skip to content

Instantly share code, notes, and snippets.

@scottmagdalein
Created September 17, 2013 15:32
Show Gist options
  • Save scottmagdalein/6595985 to your computer and use it in GitHub Desktop.
Save scottmagdalein/6595985 to your computer and use it in GitHub Desktop.
Should return random number between 1 and 3.
function getRandom() {
var num = Math.floor((Math.random()*3)+1);
return num;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment