Math.pow()傳回指定乘冪數的基底運算式值

Javascript的Math.pow()方法:

pow()方法是一個靜態方法,只能藉由Math.pow()來呼叫。Math.pow()方法用來做指數運算,會傳回 baseexponent

Math.pow()的語法:

Math.pow(base, exponent)

base:基底。

exponent:指數。

Math.pow()的範例:

<script type="text/javascript">
document.writeln(Math.pow(2,6));
document.writeln("<br/>");
document.writeln(Math.pow(10,5));
document.writeln("<br/>");
document.writeln(Math.pow(3,3));
</script>

Math.pow()的範例輸出:

64
100000
27

關於Math物件的其他屬性與方法,請參考:數學物件 Math

 
 

  按個讚!~支持本站!~

FB推薦載入中