Math库指南 https://www.w3school.com.cn/jsref/jsref_obj_math.asp
计算指数幂Math.pow(x,a)
其中x表示计算的底数,a代表指数
//实力
let res = Math.pow(12,2)
console.log(res) // 144
Math库指南 https://www.w3school.com.cn/jsref/jsref_obj_math.asp
其中x表示计算的底数,a代表指数
//实力
let res = Math.pow(12,2)
console.log(res) // 144
让时间为你证明