外观
禁止使用 Math.pow,赞成使用 ** 运算符
ES2016 引入的前缀指数运算符 ** 是标准 Math.pow 函数的替代品。前缀符号被认为比函数符号更具可读性,因此更受欢迎。
Math.pow(a, b);