em Javascript não consigo encontrar um método para definir negativos para zero?
-90 torna-se 0
-45 torna-se 0
0 torna-se 0
90 torna-se 90
Existe algo assim? Acabei de arredondar os números.
Respostas:
Apenas faça algo como
value = value < 0 ? 0 : value;
ou
if (value < 0) value = 0;
ou
value = Math.max(0, value);
Math.max
mais desse, porque só requer referência value
uma vez
Suponho que você poderia usar Math.max()
.
var num = 90;
num = Math.max(0,num); // 90
var num = -90;
num = Math.max(0,num); // 0
Math.max(0, NaN)
e Math.max(0, undefined)
return, NaN
então você pode querer fazer algo como:Math.max(0, num) || 0
Math.positive = function(num) {
return Math.max(0, num);
}
// or
Math.positive = function(num) {
return num < 0 ? 0 : num;
}
x < 0 ? 0 : x
faz o trabalho.
Lembre-se do zero negativo.
function isNegativeFails(n) {
return n < 0;
}
function isNegative(n) {
return ((n = +n) || 1 / n) < 0;
}
isNegativeFails(-0); // false
isNegative(-0); // true
Math.max(-0, 0); // 0
Math.min(-0, 0); // -0
Fonte: http://cwestblog.com/2014/02/25/javascript-testing-for-negative-zero/
Não acredito que tal função exista com o objeto Math nativo. Você deve escrever um script para preencher a função se precisar usá-la.