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 36a00cc commit 9fe6f44Copy full SHA for 9fe6f44
Sprint-1/1-key-exercises/4-random.js
@@ -1,8 +1,11 @@
1
const minimum = 1;
2
const maximum = 100;
3
4
+
5
const num = Math.floor(Math.random() * (maximum - minimum + 1)) + minimum;
6
7
8
9
// In this exercise, you will need to work out what num represents?
10
// Try breaking down the expression and using documentation to explain what it means
11
// It will help to think about the order in which expressions are evaluated
0 commit comments