We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deb7eef commit eddb7aaCopy full SHA for eddb7aa
Sprint-1/1-key-exercises/4-random.js
@@ -2,6 +2,11 @@ const minimum = 1;
2
const maximum = 100;
3
4
const num = Math.floor(Math.random() * (maximum - minimum + 1)) + minimum;
5
+//num can be any generated random number between 1 and 100, rounded down.
6
+
7
8
9
10
11
// In this exercise, you will need to work out what num represents?
12
// Try breaking down the expression and using documentation to explain what it means
0 commit comments