Number.MAX_VALUE
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
A propriedade Number.MAX_VALUE
representa o maior valor numérico representável em JavaScript.
Experimente
Property attributes of Number.MAX_VALUE | |
---|---|
Writable | no |
Enumerable | no |
Configurable | no |
Descrição
Exemplos
Usando MAX_VALUE
O código a seguir multiplica dois valores numéricos. Se o resultado é menor ou igual a MAX_VALUE
, a função func1
é chamada; caso contrário, a função func2
é chamada.
js
if (num1 * num2 <= Number.MAX_VALUE) {
func1();
} else {
func2();
}
Especificações
Specification |
---|
ECMAScript Language Specification # sec-number.max_value |
Compatibilidade com navegadores
BCD tables only load in the browser
Veja também
Number.MIN_VALUE
- O objeto
Number
a qual ela pertence