Javascript四舍五入Math.round()与Math.pow()使用介绍


在JavaScript中,`Math.round()` 和 `Math.pow()` 是两个常用的数学函数,但它们的用途和行为有所不同。下面我会分别介绍这两个函数的基本用法。

### Math.round()

`Math.round()` 函数用于将一个数四舍五入到最接近的整数。如果参数的小数部分是.5,则四舍五入到偶数。

**基本语法**:


Math.round(x)

其中 `x` 是需要四舍五入的数。

**示例**:


console.log(Math.round(0.6)); // 输出: 1
console.log(Math.round(0.5)); // 输出: 0(因为0.5四舍五入到最近的偶数)
console.log(Math.round(-0.5)); // 输出: -0(但通常显示为0,因为它表示的是零,只是符号不同)
console.log(Math.round(-0.6)); // 输出: -1

### Math.pow()

`Math.pow()` 函数返回第一个参数的第二个参数次幂。换句话说,它计算第一个数的第二个数次幂。

**基本语法**:


Math.pow(base, exponent)

其中 `base` 是底数,`exponent` 是指数。

**示例**:


console.log(Math.pow(2, 3)); // 输出: 8 (因为2的3次幂是8)
console.log(Math.pow(7, 2)); // 输出: 49 (因为7的2次幂是49)
console.log(Math.pow(3, 0.5)); // 输出: 1.7320508075688772 (因为3的平方根是约等于1.732)

这两个函数都是JavaScript中处理数学运算时非常有用的工具,但它们各自有着不同的用途和行为。`Math.round()` 用于四舍五入到整数,而 `Math.pow()` 用于计算幂运算。