round()
Math对象的函数接受一个浮点随机数,并返回其最接近的整数值。
如果给定数字为x.5或更大,则此函数返回下一个数字(x + 1)
如果给定数字为x.4或更小,则此函数返回前一个数字(x-1)。
如果给定的数字本身是整数,则此函数返回相同的值。
其语法如下
Math.round();
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.round(2541.542); document.write("Rounded value of the given number: "+result); </script> </body> </html>
输出结果
Rounded value of the given number: 2542