xxxxxxxxxx
<html>
<body>
<script>
document.write(Math.abs(-3) + '<br>'); // 3
document.write(Math.abs(3) + '<br>'); // 3
document.write(Math.abs(-2.5)); // 2.5
</script>
</body>
</html>
xxxxxxxxxx
<html>
<body>
<script>
document.write(Math.abs(-3) + '<br>'); // 3
document.write(Math.abs(3) + '<br>'); // 3
document.write(Math.abs(-2.5)); // 2.5
</script>
</body>
</html>