Last active
March 13, 2016 19:10
-
-
Save diem1/41f30a39af308ce1518a to your computer and use it in GitHub Desktop.
Revisions
-
diem1 revised this gist
Mar 13, 2016 . 1 changed file with 2 additions and 0 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 @@ -0,0 +1,2 @@ n = Math.floor(Math.random() * 10 + 1) console.log n -
diem1 created this gist
Mar 10, 2016 .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,2 @@ var n = Math.floor((Math.random() * 10) + 1); console.log(n);