remove negative sign in integer value in jquery code example
Example 1: js make value positive
Math.abs(-4)//returns 4
Math.abs(4)//returns 4
Example 2: javascript convert minus to plus
var x = 20;
x *= -1;
Math.abs(-4)//returns 4
Math.abs(4)//returns 4
var x = 20;
x *= -1;