What this snippet does
Math.random() gives [0, 1) — scale and shift it to get integers in any inclusive range.
Expected output
(random number between 1 and 6) (random number between 1 and 6) (random number between 100 and 200)
Why practise typing this
Typing math code builds muscle memory for the symbols and indentation JavaScript uses most, which prose-based typing tests never cover. DevType measures your words per minute and accuracy on this snippet and tracks the individual characters you mistype, so later lessons can target them.
More JavaScript practice
- Math methodsMath · beginner
- let vs constVariables · beginner
- const configVariables · beginner
- const mutationVariables · beginner
- var hoistingVariables · beginner
- var scope leakVariables · intermediate