There was an error while loading. Please reload this page.
1 parent 7be66ff commit 3630054Copy full SHA for 3630054
1 file changed
Sprint-1/1-key-exercises/4-random.js
@@ -2,7 +2,7 @@ const minimum = 1;
2
const maximum = 100;
3
4
const num = Math.floor(Math.random() * (maximum - minimum + 1)) + minimum;
5
-
+console.log (num);
6
// In this exercise, you will need to work out what num represents?
7
// Try breaking down the expression and using documentation to explain what it means
8
// It will help to think about the order in which expressions are evaluated
0 commit comments