in Javascript non riesco a trovare un metodo per impostare i negativi a zero?
-90 diventa 0
-45 diventa 0
0 diventa 0
90 diventa 90
C'è qualcosa del genere? Ho appena arrotondato i numeri.
Risposte:
Fai qualcosa di simile
value = value < 0 ? 0 : value;
o
if (value < 0) value = 0;
o
value = Math.max(0, value);
Math.max
uno di più, perché richiede solo riferimento a value
una volta
Suppongo che potresti usare 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)
ritornano, NaN
quindi potresti voler fare qualcosa in questo modo: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
fa il lavoro.
Ricorda lo 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/
Non credo che una tale funzione esista con l'oggetto Math nativo. Dovresti scrivere uno script per compilare la funzione se devi usarla.