Optional
value: anyStatic
Readonly
EPSILONThe value of Number.EPSILON is the difference between 1 and the smallest value greater than 1 that is representable as a Number value, which is approximately: 2.2204460492503130808472633361816 x 10−16.
Static
Readonly
MAX_The value of the largest integer n such that n and n + 1 are both exactly representable as a Number value. The value of Number.MAX_SAFE_INTEGER is 9007199254740991 2^53 − 1.
Static
Readonly
MAX_The largest number that can be represented in JavaScript. Equal to approximately 1.79E+308.
Static
Readonly
MIN_The value of the smallest integer n such that n and n − 1 are both exactly representable as a Number value. The value of Number.MIN_SAFE_INTEGER is −9007199254740991 (−(2^53 − 1)).
Static
Readonly
MIN_The closest number to zero that can be represented in JavaScript. Equal to approximately 5.00E-324.
Static
Readonly
NEGATIVE_A value that is less than the largest negative number that can be represented in JavaScript. JavaScript displays NEGATIVE_INFINITY values as -infinity.
Static
Readonly
NaNA value that is not a number. In equality comparisons, NaN does not equal any value, including itself. To test whether a value is equivalent to NaN, use the isNaN function.
Static
Readonly
POSITIVE_A value greater than the largest number that can be represented in JavaScript. JavaScript displays POSITIVE_INFINITY values as infinity.
If this is true, all notes are required to be hit perfectly.
If this is true, it is easier to fill the gauge.
If this is true, it is impossible to get a full gauge.
Converts a number to a string by using the current or specified locale.
Optional
locales: string | string[]A locale string or array of locale strings that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
Optional
options: NumberFormatOptionsAn object that contains one or more properties that specify comparison options.
Converts a number to a string by using the current or specified locale.
Optional
locales: LocalesArgumentA locale string, array of locale strings, Intl.Locale object, or array of Intl.Locale objects that contain one or more language or locale tags. If you include more than one locale string, list them in descending order of priority so that the first entry is the preferred locale. If you omit this parameter, the default locale of the JavaScript runtime is used.
Optional
options: NumberFormatOptionsAn object that contains one or more properties that specify comparison options.
Static
isStatic
isStatic
isReturns a Boolean value that indicates whether a value is the reserved value NaN (not a number). Unlike the global isNaN(), Number.isNaN() doesn't forcefully convert the parameter to a number. Only values of the type number, that are also NaN, result in true.
A numeric value.
Static
isStatic
parseStatic
parseConverts A string to an integer.
A string to convert into a number.
Optional
radix: numberA value between 2 and 36 that specifies the base of the number in string
.
If this argument is not supplied, strings with a prefix of '0x' are considered hexadecimal.
All other strings are considered decimal.
Generated using TypeDoc
Wrapper class around JavaScript's Number. Percentage multiplier for amount of notes in the song notation that is applied to gauge calculation.