This commit is contained in:
Aryan Jabbari
2015-08-17 16:42:20 -04:00
parent 237df7aa64
commit 79b2c0bd2c

View File

@ -924,7 +924,7 @@
"title": "Generate Random Whole Numbers within a Range",
"difficulty":"9.9829",
"description":[
"We can use a certain mathematical expression to get a random number between between two numbers.",
"We can use a certain mathematical expression to get a random number between two numbers.",
"<code>Math.floor(Math.random() * (max - min + 1)) + min</code>",
"By using this we can control the output of a random number."
],