Level 53
Level 55
6 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
Math.random();
returns a random number between 0 (inclusive), and 1 (exclusive)
Math.min(list);
find the lowest value in a list of arguments
Math.max(list);
find the highest value in a list of arguments
Math.round(number);
rounds a number to the nearest integer
Math.ceil(number);
rounds a number up to the nearest integer
Math.floor(number);
rounds a number down to the nearest integer