javascript flip postiive to negative code example
Example 1: js make value positive
Math.abs(-4)//returns 4
Math.abs(4)//returns 4
Example 2: makes number negative javascript
Math.abs(num) => Always positive
-Math.abs(num) => Always negative
Math.abs(-4)//returns 4
Math.abs(4)//returns 4
Math.abs(num) => Always positive
-Math.abs(num) => Always negative