number Flashcards
1
Q
isFinite()
A
Checks whether a value is a finite number
2
Q
isInteger()
A
Checks whether a value is an integer
3
Q
isNaN()
A
Checks whether a value is Number.NaN
used as a builtin function
4
Q
isSafeInteger()
A
Checks whether a value is a safe integer
5
Q
toExponential(x)
A
Converts a number into an exponential notation
6
Q
toFixed(x)
A
Formats a number with x numbers of digits after the decimal point
7
Q
toPrecision(x)
A
Formats a number to x length
8
Q
toString()
A
Converts a number to a string
9
Q
valueOf()
A
Returns the primitive value of a number