how do you turn a number into a negative number javascript code example
Example 1: how to turn a number negative in javascript
-Math.abs(num); // "-" before Math.abs()
Example 2: makes number negative javascript
Math.abs(num) => Always positive
-Math.abs(num) => Always negative
Example 3: javascript convert minus to plus
var x = 20;
x *= -1;