converter número negativo em positivo em javascript
Math.abs("the negative number")
Rich Rhinoceros
Math.abs("the negative number")
-Math.abs(num); // "-" before Math.abs()
var x = 20;
x *= -1;