Level 51 Level 53
Level 52

Number Methods


8 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.

All None

Ignore?
number.toString();
returns a number as a string
number.toExponential(chars);
returns a string, written using exponential notation
number.toFixed(chars);
returns a string, with the number written with a specified number of decimals
number.toPrecision();
returns a string, with a number written with a specified length
Number(variable);
Converts variables to numbers
parseInt(string);
parses a string and returns an integer
parseFloat(string);
parses a string and returns a number
x.valueOf();
returns a number as a number