js之Math对象

Posted 月半的博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js之Math对象相关的知识,希望对你有一定的参考价值。

        var num = Math.random()*10;
        var num1 = Math.floor(num); // 向下取整
        var num2 = Math.ceil(num); // 向上取整
        document.write(num2+-<br>);
        document.write(num1);

        // 1-10 随机数
        var a = Math.floor(Math.random()*10+1);
        console.log(a);

        function selectForm(min,max){
            var ta = max - min + 1;
            return Math.floor(Math.random() * ta + min);
        }
        console.log(selectForm(3,5));

        var colors = ["red","gree","blue","yellow","black"];
        var color = colors[selectForm(0,colors.length-1)];
        console.log(color);                

 

以上是关于js之Math对象的主要内容,如果未能解决你的问题,请参考以下文章

原生js之Math对象

js之Math对象

VSCode自定义代码片段——JS中的面向对象编程

VSCode自定义代码片段9——JS中的面向对象编程

03JavaScript程序设计修炼之道 2019-06-09_fe-js-053Math对象_ Date对象es6对象新变化

JavaScript 有用的代码片段和 trick