Answers for "javascript check negative number"

1

check if number is negative javascript

const positive = 5;
const negative = -5;
const zero = 0;

Math.sign(positive); // 1
Math.sign(negative); // -1
Math.sign(zero); // 0
Posted by: Guest on October-29-2020
1

javascript check negative number

(number < 0)

"-0" < 0 is false, which is consistent with the fact that -0 < 0 is also false (see: signed zero).
"-Infinity" < 0 is true (infinity is acknowledged)
"-1e0" < 0 is true (scientific notation literals are accepted)
"-0x1" < 0 is true (hexadecimal literals are accepted)
"  -1  " < 0 is true (some forms of whitespaces are allowed)
Posted by: Guest on September-01-2021
2

check if number is negative javascript

Math.sign() has 5 possible return values:
1 // positive number
-1 // negative number
0 // positive zero
-0 // negative zero
NaN // not a number
Posted by: Guest on October-29-2020

Code answers related to "javascript check negative number"

Code answers related to "Javascript"

Browse Popular Code Answers by Language