双乘号表示指数幂运算

除了调用Math库中的pow方法,js中还可以用双乘号表示幂运算 **

  1. let a = 2 ** 3 //表示2的3次方
  2. console.log(a) //8