check positive number in javascript code example
Example 1: find positive integers javascript
.filter(num => num > 0 && num % parseInt(num) === 0)
Example 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