js absolute code example
Example 1: javascript absolute value
Math.abs(-2) // 2
Math.abs(2) // 2
Example 2: how to get an absolute in js
var value = Math.abs(-10);
// value returns 10
Example 3: js absolute value
Math.abs(-4)//returns 4
Math.abs(4)//returns 4
Example 4: javascript math absolute
Math.abs(-7.25); // returns 7.25