Skip to content

Commit a4bd6ee

Browse files
committed
docs(stdlib): edit math/Math.pow()
1 parent aa26f6d commit a4bd6ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/stdlib/math.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Math.SQRT2 // 1.4142135623730951
3737
- `Math.floor()`:向下取整
3838
- `Math.max()`:最大值
3939
- `Math.min()`:最小值
40-
- `Math.pow()`指数运算
40+
- `Math.pow()`幂运算
4141
- `Math.sqrt()`:平方根
4242
- `Math.log()`:自然对数
4343
- `Math.exp()``e`的指数
@@ -121,7 +121,7 @@ Math.round(-1.6) // -2
121121

122122
### Math.pow()
123123

124-
`Math.pow`方法返回以第一个参数为底数、第二个参数为幂的指数值
124+
`Math.pow`方法返回以第一个参数为底数、第二个参数为指数的幂运算值
125125

126126
```javascript
127127
// 等同于 2 ** 2

0 commit comments

Comments
 (0)