JavaScript Number MIN_VALUE Property
- Vorherige Seite MAX_VALUE
- Nächste Seite NaN
- Zurück zur vorherigen Ebene JavaScript Number Referenzhandbuch
Definition and Usage
Number.MIN_VALUE
Returns the smallest possible number in JavaScript.
MIN_VALUE
The property is the smallest number that can be represented in JavaScript (close to 0, but not negative). Its value is approximately 5 x 10-324(5E-324).
Note:
MIN_VALUE
It is the closest value to 0.
Numbers less than this will be converted to 0.
The largest negative number is negative MAX_NUMBER.
Number.MIN_VALUE
MIN_VALUE is a property of the JavaScript Number object.
You can only use it as Number.MIN_VALUE.
If you use x.MIN_VALUE, where x is a variable, it will return undefined:
Example
let x = 100; x.MIN_VALUE;
Syntax
Number.MIN_VALUE
Return Value
Type | Description |
---|---|
Number | 5e-324 |
Browser Support
Number.MIN_VALUE
Es ist eine ECMAScript1 (ES1)-Eigenschaft.
Alle Browser unterstützen ES1 (JavaScript 1997) vollkommen:
Chrome | IE | Edge | Firefox | Safari | Opera |
---|---|---|---|---|---|
Chrome | IE | Edge | Firefox | Safari | Opera |
Unterstützung | Unterstützung | Unterstützung | Unterstützung | Unterstützung | Unterstützung |
- Vorherige Seite MAX_VALUE
- Nächste Seite NaN
- Zurück zur vorherigen Ebene JavaScript Number Referenzhandbuch