Với JavaScript, sử dụng toán tử% để lấy phần thập phân của một số.
Ví dụ
Bạn có thể thử chạy như sau để lấy phần thập phân -
<!DOCTYPE html> <html> <body> <script> var num1 = 5.3; var num2 = 4.2; var num3 = 8.6; document.write(num1 % 1); document.write("<br>"+num2 % 1); document.write("<br>"+num3 % 1); </script> </body> </html>
Đầu ra
0.2999999999999998 0.20000000000000018 0.5999999999999996