abs () hàm của đối tượng Math chấp nhận một số và trả về giá trị tuyệt đối của nó.
Cú pháp
Cú pháp của nó như sau
Math.abs(3)
Ví dụ
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.abs(3); document.write("Absolute value: "+result); </script> </body> </html>
Đầu ra
Absolute value: 3