make postive number js code example
Example 1: js make value positive
Math.abs(-4)//returns 4
Math.abs(4)//returns 4
Example 2: how to turn a number negative in javascript
-Math.abs(num); // "-" before Math.abs()
Math.abs(-4)//returns 4
Math.abs(4)//returns 4
-Math.abs(num); // "-" before Math.abs()