您的浏览器过于古老 & 陈旧。为了更好的访问体验, 请 升级你的浏览器
Ready 发布于2014年08月05日 02:52

原创 JavaScript Math.pow() 函数详解

4067 次浏览 读完需要≈ 4 分钟

内容目录

Math.pow()函数用于返回一个数的指定次幂

该函数属于JavaScript的内置全局对象Math所有主流浏览器均支持该函数

语法

静态函数Math.pow()的语法如下:

Math.pow( x, n )

参数

参数 描述
x Number类型指定的数,作为幂的底数
n Number类型指定的数,作为幂的指数

返回值

Math.pow()的返回值为Number类型。返回 x的n次幂,即 xn

如果参数中存在为NaN的值,则返回NaN

示例&说明

document.writeln( Math.pow( 2.5, 0 ) ); // 1

document.writeln( Math.pow( 2, 10 ) );   // 1024

document.writeln( Math.pow( 5, 1.1 ) );    // 5.873094715440096

document.writeln( Math.pow( -5, -2 ) );    // 0.04

//传递的参数中有NaN值
document.writeln( Math.pow( "李四", 2 ) );  // NaN

运行代码

  • CodePlayer技术交流群1
  • CodePlayer技术交流群2

0 条评论

撰写评论

打开导航菜单