当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Math fround()用法及代码示例


JavaScript Math.fround() 函数返回数字的最接近的 32 位单精度浮点表示。

用法:

Math.fround(doubleFloat)

fround() 是一个静态方法,使用 Math 类名调用。

Math.fround() 参数

Math.fround() 函数接受:

  • doubleFloat - 一个 Number

从数学返回值。fround()

  • 返回给定数字的最接近的 32 位单精度浮点表示。
  • 如果是非数字参数,则返回 NaN

示例:使用数学。fround()

var num = Math.fround(1.5);
console.log(num); // 1.5

var num = Math.fround(5.05);
console.log(num); // 5.050000190734863

console.log(2 ** 130); // 1.361129467683754e+39
var num = Math.fround(2 ** 130);
console.log(num); // Infinity

var num = Math.fround(5);
console.log(num); // 5

var num = Math.fround(1.337);
console.log(num); // 1.3370000123977661

输出

1.5
5.050000190734863
1.361129467683754e+39
Infinity
5
1.3370000123977661

JavaScript 在内部使用 64 位双精度浮点数。

在这里,我们可以看到可以在二进制数字系统中完美表示的数字(如 1.5)具有相同的 32 位单精度浮点表示。

但是,一些不能完美表示的(如 1.337 或 5.05)在 32 位和 64 位中有所不同。

自从2**130对于 32 位浮点数来说太大了,fround()返回Infinity对于这样的数字。

相关用法


注:本文由纯净天空筛选整理自 JavaScript Math fround()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。