Answers for "how to absolute value in javascript"

16

js absolute value

Math.abs(-4)//returns 4
Math.abs(4)//returns 4
Posted by: Guest on April-09-2020
5

how to get an absolute in js

var value = Math.abs(-10);
// value returns 10
Posted by: Guest on February-05-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language