in Javascript I can't seem to find a method to set negatives to zero?
-90 becomes 0
-45 becomes 0
0 becomes 0
90 becomes 90
Is there anything like that? I have just rounded numbers.
in Javascript I can't seem to find a method to set negatives to zero?
-90 becomes 0
-45 becomes 0
0 becomes 0
90 becomes 90
Is there anything like that? I have just rounded numbers.
I suppose you could use Math.max()
.
var num = 90;
num = Math.max(0,num) || 0; // 90
var num = -90;
num = Math.max(0,num) || 0; // 0
If you want to be clever:
num = (num + Math.abs(num)) / 2;
However, Math.max
or a conditional operator would be much more understandable.
Also, this has precision issues for large numbers.
function makeNegativeNumberZero(num) {
return !!Math.max(0, num);
}
// or
function makeNegativeNumberZero(num) {
return num < 0 ? 0 : num;
}
Remember the negative zero.
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
Source: http://cwestblog.com/2014/02/25/javascript-testing-for-negative-zero/
Just do something like
or
or