2018-05-23 js笔记

一、数学对象:Math(不能被new)

重点:随机数

求最大值(Math.max(1,2,3,4,5));

求最小值(Math.max(1,2,3,4,5));

求数组中最大值和最小值

(Math.min.apply(null.[数组]));

(Math.max.apply(null.[数组]));

Math.ceil();向上取整

Math.floor();向下取整

Math.rondom() 0-1之间的随机数 (不包括0和1)

Math.floor(Math.random()*(max-min+1)+min)(两个数之间的随机数公式)

二、日期对象

//声明一个日期对象,同时是获取系统当前时间

var date=new Date(); cosole.log(date);

//自定义时间

var date=new Date(年/月/天/时:分:秒);

日期对象API:

年:FullYear

月:Month

天:Date

星期:Day(号)

时:Hours

分:Minutes

秒:Seconds

毫秒:Milliseconds

//获取年

var year=now getFullyear();

console.log(year);

//获取月

var moth=now.getMonth()+1;

console.log(moth);

//获取日

var date=now.getDate();

console.log(date);

//获取星期

var day=now.getDay();

console.log(day);

//获取时

var hour=now.getHours();

console.log(hour);

//获取分

var minu=now.getMinutes();

console.log(minu);

//获取秒

var sec=now.getSeconds();

console.log(date);

你可能感兴趣的:(2018-05-23 js笔记)