javascript make number positive if negative code example
Example 1: convert negative number to positive in javascript
Math.abs("the negative number")
Example 2: 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