mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-18 06:01:14 -05:00
364 B
364 B
title
| title |
|---|
| Generate Random Whole Numbers with JavaScript |
It's great that we can create random decimal numbers, but it's even more useful if we lot more useful to generate a random whole number.
To achieve this we can multiply the random number by ten and use the Math.floor() to convert the decimal number to a whole number
Math.floor(Math.random()*10)