掌握 JavaScript 中的数字方法

来源:undefined 2025-01-21 04:33:56 1001

javascript 中的数字方法

javascript 提供了多种内置方法来有效地处理数字。这些方法允许您执行格式化、舍入、解析和验证数字等操作。

1.转换数字

a. tostring()

将数字转换为字符串。

1

2

3

const num = 123;

console.log(num.tostring()); // output: "123"

console.log((456).tostring()); // output: "456"

登录后复制
b.固定(数字)

格式化具有固定小数位数的数字。

1

2

3

const num = 3.14159;

console.log(num.tofixed(2)); // output: "3.14"

console.log(num.tofixed(4)); // output: "3.1416"

登录后复制
c.指数(数字)

返回指数表示法的数字。

1

2

const num = 12345;

console.log(num.toexponential(2)); // output: "1.23e+4"

登录后复制
d. toprecision(数字)

将数字格式化为指定的总长度(包括小数)。

1

2

3

const num = 123.456;

console.log(num.toprecision(4)); // output: "123.5"

console.log(num.toprecision(6)); // output: "123.456"

登录后复制

2.解析和验证数字

a. parseint(字符串, 基数)

字符串解析

为整数。

1

2

console.log(parseint("123")); // output: 123

console.log(parseint("101", 2)); // output: 5 (binary to decimal)

登录后复制
b. parsefloat(字符串)

将字符串解析为浮点数。

1

2

console.log(parsefloat("3.14")); // output: 3.14

console.log(parsefloat("123abc")); // output: 123

登录后复制
c. number.isinteger(值)

检查值是否为整数。

1

2

console.log(number.isinteger(123)); // output: true

console.log(number.isinteger(3.14)); // output: false

登录后复制
d. number.isfinite(值)

检查一个值是否是有限数。

1

2

console.log(number.isfinite(123)); // output: true

console.log(number.isfinite(infinity)); // output: false

登录后复制
e. number.isnan(值)

检查值是否为 nan(非数字)。

1

2

console.log(number.isnan(nan)); // output: true

console.log(number.isnan(123)); // output: false

登录后复制

3.四舍五入数字

a. math.round()

将数字四舍五入到最接近的整数。

1

2

console.log(math.round(4.5)); // output: 5

console.log(math.round(4.4)); // output: 4

登录后复制
b. math.ceil()

将数字向上舍入到下一个整数。

1

console.log(math.ceil(4.1)); // output: 5

登录后复制
c. math.floor()

1

console.log(math.floor(4.9)); // output: 4

登录后复制
d. math.trunc()

删除数字的小数部分。

1

console.log(math.trunc(4.9)); // output: 4

登录后复制

4.生成随机数

a. math.random()

生成 0(含)和 1(不包括)之间的随机数。

1

console.log(math.random()); // output: a random number between 0 and 1

登录后复制

生成一定范围内的随机数:

1

2

3

4

const min = 1;

const max = 10;

const random = math.floor(math.random() * (max - min + 1)) + min;

console.log(random); // output: a random number between 1 and 10

登录后复制

5.其他有用的数字方法

a. math.abs()

返回数字的绝对值。

1

console.log(math.abs(-5)); // output: 5

登录后复制
b. math.pow(底数, 指数)

返回底数的指数次方。

1

console.log(math.pow(2, 3)); // output: 8

登录后复制
c. math.sqrt()

返回数字的平方根。

1

console.log(math.sqrt(16)); // output: 4

登录后复制
d. math.max() 和 math.min()

查找一组数字中的最大值或最小值。

1

2

console.log(math.max(1, 5, 3)); // output: 5

console.log(math.min(1, 5, 3)); // output: 1

登录后复制
e. math.sign()

返回数字的符号(-1、0 或 1)。

1

2

3

console.log(Math.sign(-10)); // Output: -1

console.log(Math.sign(0));   // Output: 0

console.log(Math.sign(10));  // Output: 1

登录后复制

6.总结

javascript 提供了多种处理数字的方法,从转换到复杂的数学运算。 math 对象包含用于高级计算的实用函数。 使用这些方法可以有效地处理舍入、解析、格式化和生成数字。

通过掌握这些数字方法,你可以轻松处理 javascript 中的各种数字运算。

嗨,我是 abhay singh kathayat!

我是一名全栈开发人员,拥有前端和后端技术方面的专业知识。我使用各种编程语言和框架来构建高效、可扩展且用户友好的应用程序。

请随时通过我的商务电子邮件与我联系:kaashshorts28@gmail.com。

以上就是掌握 JavaScript 中的数字方法的详细内容,更多请关注php中文网其它相关文章!

最新文章