📜  JavaScript数学fround()

📅  最后修改于: 2020-09-27 06:29:39             🧑  作者: Mango

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

Math.fround() 函数的语法为:

Math.fround(doubleFloat)

使用Math类名称调用作为静态方法的fround()


Math.fround()参数

Math.fround() 函数可以接受:

  • doubleFloat-一个Number

从Math.fround()返回值
  • 返回给定数字的最接近的32位单精度浮点表示形式。
  • 如果非数字参数,则返回NaN

示例:使用Math.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.3375.05 )在32位和64位上有所不同。

由于2 ** 130对于32位浮点数太大,因此fround()对于此类数字将返回Infinity


推荐读物:

  • JavaScript Math round()