【标题】#博学谷IT学习技术支持#哦--------------------------------- Math 对象最大值&封装自己的数学对象&♥二-Math绝对值和三个取整方法基础知识总结

  ♥一.Math  对象最大值

Math数学对象 不是一个构造函数 ,所以我们不需要new 来调用 而是直接使用里面的属性和方法即可

        console.log(Math.PI); // 一个属性 圆周率

        console.log(Math.max(1, 99, 3)); // 99

        console.log(Math.max(-1, -10)); // -1

        console.log(Math.max(1, 99, 'pink老师')); // NaN

        console.log(Math.max()); // -Infinity

  ​​​​​​​♥二-封装自己的数学对象script>

       . 利用对象封装自己的数学对象  里面有 PI 最大值和最小值

        var myMath = {

            PI: 3.141592653,

            max: function() {

                var max = arguments[0];

                for (var i = 1; i < arguments.length; i++) {

                    if (arguments[i] > max) {

                        max = arguments[i];

                    }

                }

                return max;

            },

            min: function() {

                var min = arguments[0];

                for (var i = 1; i < arguments.length; i++) {

                    if (arguments[i] < min) {

                        min = arguments[i];

                    }

                }

                return min;

            }

        }

        console.log(myMath.PI);

        console.log(myMath.max(1, 5, 9));

        console.log(myMath.min(1, 5, 9));

    </script>

  ​​​​​​​♥二-Math绝对值和三个取整方法

<script>

        // 1.绝对值方法

        console.log(Math.abs(1)); // 1

        console.log(Math.abs(-1)); // 1

        console.log(Math.abs('-1')); // 隐式转换 会把字符串型 -1 转换为数字型

        console.log(Math.abs('pink')); // NaN

        // 2.三个取整方法

        // (1) Math.floor()   地板 向下取整  往最小了取值

        console.log(Math.floor(1.1)); // 1

        console.log(Math.floor(1.9)); // 1

        // (2) Math.ceil()   ceil 天花板 向上取整  往最大了取值

        console.log(Math.ceil(1.1)); // 2

        console.log(Math.ceil(1.9)); // 2

        // (3) Math.round()   四舍五入  其他数字都是四舍五入,但是 .5 特殊 它往大了取  

        console.log(Math.round(1.1)); // 1

        console.log(Math.round(1.5)); // 2

        console.log(Math.round(1.9)); // 2

        console.log(Math.round(-1.1)); // -1

        console.log(Math.round(-1.5)); // 这个结果是 -1

    </script>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值