JS 对象

2021-06-17 23:04

阅读:407

YPE html>

标签:一个   input   set   html   log   asc   push   abs   --   

Math类型:封装了所有数学计算有关的API。

不能NEW!

Math.PI

取整:

Math.round(num)       -->四十五入取整

Math.ceil(num)           -->向上取整

Math.floor(num)         -->向下取整

var n=22.56;

Math.round(n)  --->23

Math.ceil(n)    --->23

Math.floor(n)    --->22

Math.pow(底数,幂)

Math.sqrt(num)  //开平方  平方根!

var n = 9;

Math.pow(n,3)    //9*9*9

Math.sqrt(n)       //3

 

绝对值:Math.abs(num)  //取绝对值

 Math.max/min(值1,值2,值3,.......值n)

Document

随机数:Math.random():0

任意 min - max:

Math.floor(random()*(max-min+1)+min)


Document

 Date对象:封装一个时间点数据,提供对时间、日期的常用API

创建:var date = new Date();

1.创建Date类型的对象;

2.自动获得浏览器当前时间点;

JS 对象

标签:一个   input   set   html   log   asc   push   abs   --   

原文地址:http://www.cnblogs.com/AmbiguousMiao/p/7264356.html


评论


亲,登录后才可以留言!