JavaScript Math.fround()
示例
let a = Math.fround(2.60);
let b = Math.fround(2.50);
let c = Math.fround(2.49);
let d = Math.fround(-2.60);
let e = Math.fround(-2.50);
let f = Math.fround(-2.49);
自己尝试 »
描述
The Math.fround()
方法返回一个数字的最近的 32 位单精度浮点数表示。
JavaScript 四舍五入函数
Math.abs() 方法Math.ceil() 方法
Math.floor() 方法
Math.round() 方法
Math.fround() 方法
Math.trunc() 方法
语法
Math.fround(x)
参数
参数 | 描述 |
x | 必需。 一个数字。 |
返回值
类型 | 描述 |
数字 | 该数字的最近的 32 位单精度浮点数表示。 |
浏览器支持
Math.fround()
是 ECMAScript6 (ES6) 特性。
ES6 (JavaScript 2015) 自 2017 年 6 月起在所有现代浏览器中都得到支持
Chrome 51 | Edge 15 | Firefox 54 | Safari 10 | Opera 38 |
2016 年 5 月 | 2017 年 4 月 | 2017 年 6 月 | 2016 年 9 月 | 2016 年 6 月 |
Math.fround()
在 Internet Explorer 中不受支持。