码迷,mamicode.com
首页 > 其他好文 > 详细

Math.pow

时间:2019-12-23 18:47:23      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:math   col   init   用法   turn   负数   a*   for   script   

一个Math函数,
例如:Math.pow(4,3);返回4的三次幂,
用法:Math.pow(x,y)

x 必需传。底数。必须是数字。

y 必需传。幂数。必须是数字。
如果结果是虚数或负数,则该方法将返回 NaN。如果由于指数过大而引起浮点溢出,则该方法将返回 Infinity我们用函数来写一个类似功能的

<script>
        function arr(n,m) {
            for(var i = 1,a=n; i<m; i++){
                a *=n;
                }
                return a;
        }
        console.log(arr(9,2));


        function arr1(a,b) {
            return a**b;
        }
        console.log(arr1(4,0.5));

        </script>

Math.pow

标签:math   col   init   用法   turn   负数   a*   for   script   

原文地址:https://www.cnblogs.com/niuyaomin/p/12085161.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!