美文网首页
js常用math方法

js常用math方法

作者: 牛妈代代 | 来源:发表于2019-08-22 11:18 被阅读0次

Math常用方法

    document.write(Math.random()+'<br />');   //取随机数
    document.write(Math.abs(-12)+'<br />');             //12,取绝对值
    document.write(Math.floor(3.1)+'<br />');  //3向下取整,舍去小数点3
    document.write(Math.ceil(3.1)+'<br />');   //4向上取整
    document.write(Math.ceil(3.9)+'<br />');   //4
    document.write(Math.round(3.1)+'<br />');  //3四舍五入
    document.write(Math.round(3.9)+'<br />');  //4
    document.write(Math.round(3.5)+'<hr>');    //4
    document.write(Math.max(3,8,20,4)+'<hr>');  //20,最大
    document.write(Math.min(3,8,20,4)+'<hr>');  //3,最小

js常用数据类型转换

toString():转换成字符串;
String():吧unll、undefind转换成字符串;
parseInt():转换成整数类型
parseFloat():把字符串转换成浮点数
Boolean():转换成布尔值,null、undefind,NAN,0转换成false
JSON.parse(str1);字符串转json
JSON.stringfy():json转字符串

相关文章

  • JS之Math

    JS之Math Math本身是一个对象,使用时只需调用其内部的属性和方法即可。 Math中常用的属性: Math....

  • js常用math方法

    Math常用方法 js常用数据类型转换 toString():转换成字符串;String():吧unll、unde...

  • js随机数

    js产生随机数通常是使用javascript的Math.random()函数 常用的几种方法: 1.Math.ra...

  • python内置函数

    math模块 在使用前导入math模块 import math 常用方法 math.pow()方法 math.p...

  • Math常用方法

    Math常用方法

  • js基础(2)

    5、Math中的常用方法(10个)6、Date日期操作基础详解以及常用方法(12个) 5、Math中的常用方法(1...

  • js--Math round() random()

    Math方法整理 常用方法: random max min round floor常见属性: PI Math参考地...

  • js内置对象

    js的内置对象: Math对象就是js提供的一套关于数学的方法: Math.ceil() 向上取整 Math...

  • Java自学-数字与字符串 数学方法

    Java Math类常用方法 java.lang.Math提供了一些常用的数学运算方法,并且都是以静态方法的形式存...

  • 其他知识点(Math和Date)

    Math Math为js内置的一个对象。其中有很多的方法,比如Math.random() Math.random(...

网友评论

      本文标题:js常用math方法

      本文链接:https://www.haomeiwen.com/subject/kitnsctx.html