convertir le nombre négatif en positif en javascript
Math.abs("the negative number")
Rich Rhinoceros
Math.abs("the negative number")
-Math.abs(num); // "-" before Math.abs()
var x = 20;
x *= -1;