JavaScript Math.pow()
Math 物件的 Math.pow() 方法用來做指數運算 baseexponent。
語法:
Math.pow(base, exponent)
用法:
Math.pow(7, 2); // 49
Math.pow(7, 3); // 343
Math.pow(2, 10); // 1024
Math 物件的 Math.pow() 方法用來做指數運算 baseexponent。
語法:
Math.pow(base, exponent)
用法:
Math.pow(7, 2); // 49
Math.pow(7, 3); // 343
Math.pow(2, 10); // 1024