• javaScript系列---【Math函数-基本语法】


    Math数学函数

    Math属于js中的内置对象 (内置对象的方法都是用当前类(Math).出的)

    基本语法:

     Math.方法(参数);

    Math.abs(数据); 取绝对值
    
    Math.floor(数据); 向下取整
    
    Math.ceil(数据);向上取整
    
    Math.max(数据1,数据2,..); 取最大值
    
    Math.min(数据1,数据2,..); 取最小值
    
    Math.pow(n,m); n的m次幂
    
    Math.sqrt(数据); 开方
    
    Math.round(数据);四舍五入
    
    Math.random(); 生成[0-1)之间的随机小数 左闭右开区间 包含0,不包含1

    生成某个范围的随机数 (n-m)

    • Math.round(Math.random()*(m-n)+n);

    console.log(Math.abs(-10));
    console.log(Math.abs(-10.23));
    console.log(Math.abs(10.23));
    • 生成0-n某个范围 Math.round(Math.random()*n)

    console.log(Math.round(Math.random()*(5-0)+0));
            0-10
    • 既包括开始值也包括结束值

     

  • 相关阅读:
    git
    composer
    laravel saas
    算法模板-01背包
    GMP-C/C++(大数库)使用方法
    算法模板-容斥原理
    算法模板-欧拉函数
    算法模板-素数判断/素数筛法
    算法模板-质因数分解
    算法模板-快速幂取模
  • 原文地址:https://www.cnblogs.com/chenhaiyun/p/14550771.html
Copyright © 2020-2023  润新知