Last active
January 17, 2017 12:39
-
-
Save wwwebman/ba76e58da369d79d271ec92de62a797c to your computer and use it in GitHub Desktop.
Revisions
-
wwwebman revised this gist
Jan 17, 2017 . 1 changed file with 4 additions and 4 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,4 @@ function generateRandomBetween(min, max){ var y = Math.floor(Math.random()*(max-min + 1) + min); return y; } -
wwwebman created this gist
Jan 17, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,4 @@ function generateRandomBetween(min, max){ var y = Math.floor(Math.random()*(max-min + 1) + min); return y; }