指数运算符(Rick Waldron)
新提出来的特性是将 **
作为指数操作的中缀运算符:
x ** y
与以下表达式运算结果相同:
Math.pow(x, y)
示例:
let squared = 3 ** 2; // 9 let num = 3; num **= 2; console.log(num); // 9
扩展阅读:
- 指数运算符 (Rick Waldron)
新提出来的特性是将 **
作为指数操作的中缀运算符:
x ** y
与以下表达式运算结果相同:
Math.pow(x, y)
示例:
let squared = 3 ** 2; // 9 let num = 3; num **= 2; console.log(num); // 9
扩展阅读:
转载于:https://www.cnblogs.com/zhn0823/p/6859141.html