本文为 《JavaScript 新书:探索 ES2016 与 ES2017》的内容章节,你可以点击链接查看完整目录。
求幂运算符(**)是由 Rick Waldron 提议的一个 ECMAScript 2016 (ES 7) 新特性。
概述
> 6 ** 2 36
用于求幂的中缀运算符
**
是一个用于求幂的中缀运算符:
x ** y
下面的代码产生相同的结果:
Math.pow(x, y)
示例:
let squared = 3 ** 2; // 9 let num = 3; num **= 2; console.log(num); // 9
扩展阅读:
Exponentiation Operator (Rick Waldron)
原文链接:http://exploringjs.com/es2016-es2017/ch_exponentiation-operator.html
https://www.html.cn/doc/requirejs/ 博主你的中文文档就是英文不好人的福音,但是好多都没列出来,这个还是我无意发现的,而且还是乱码;麻烦解决下,把所有文档都列出来,幸苦了