英 [paʊ]
n.腦袋,乒乓球(表示射擊、爆炸聲等的擬聲詞)
javascript pow() 方法 語法
作用:傳回 x 的 y 次方的值。
語法:Math.pow(x,y)
#參數:x 必要。底數。必須是數字。 y 必需。冪數。必須是數字。
返回:x 的 y 次方。
說明:如果結果是虛數或負數,則方法將傳回 NaN。如果由於指數過大而造成浮點溢出,則該方法將傳回 Infinity。
javascript pow() 方法 範例
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script type="text/javascript"> //把 pow() 运用到不同的数字组合上 document.write(Math.pow(0,0) + "<br />") document.write(Math.pow(0,1) + "<br />") document.write(Math.pow(1,1) + "<br />") document.write(Math.pow(1,10) + "<br />") document.write(Math.pow(2,3) + "<br />") document.write(Math.pow(-2,3) + "<br />") document.write(Math.pow(2,4) + "<br />") document.write(Math.pow(-2,4) + "<br />") </script> </body> </html>
執行實例 »
點擊 "執行實例" 按鈕查看線上實例