Number Methods Flashcards
Number.MAX_VALUE
Returns the largest number possible in JavaScript
Number.MIN_VALUE
Returns the smallest number possible in JavaScript
Number.NEGATIVE_INFINITY
Represents negative infinity (returned on overflow)
Number.NaN
Represents a “Not-a-Number” value
Number.POSITIVE_INFINITY
Represents infinity (returned on overflow)
isFinite()
Checks whether a value is a finite number
isInteger()
Checks whether a value is an integer
isNaN()
Checks whether a value is Number.NaN
isSafeInteger()
Checks whether a value is a safe integer
toExponential(x)
Converts a number into an exponential notation
toFixed(x)
Formats a number with x numbers of digits after the decimal point
toLocaleString()
Converts a number into a string, based on the locale settings
toPrecision(x)
Formats a number to x length
toString()
Converts a number to a string
valueOf()
Returns the primitive value of a number