之前的数组也是内置对象,但是由于内容比较多,比较重要就单独拎出来说了,还有就是Math,Date,JSON,RegExp这些
首先说说math。从小到大一直都要学的一门课,就是数学,当然在我们js的世界里,数学就更加重要了,要知道,计算机被发明出来的目的就是为了计算。
Math
1. Math的属性
Math.E // 2.718281828459045 //e
Math.LN2 // 0.6931471805599453
Math.LN10 // 2.302585092994046
Math.LOG2E // 1.4426950408889634
Math.LOG10E // 0.4342944819032518
Math.PI // 3.141592653589793 // π
Math.SQRT1_2 // 0.7071067811865476
Math.SQRT2 // 1.4142135623730951```
虽然上面那么一堆,我估计一般用到最多的就是 π 。
####2. Math的方法
* round (四舍五入)
Math.round(0.1) // 0
Math.round(0.5) // 1
Math.round(-1.1) // -1
Math.round(-1.5) // -1```
*注意在负数的时候,5和正数不一样。
- floor,ceil
floor方法返回小于参数值的最大整数——舍小数
ceil方法返回大于参数值的最小整数——入一位
Math.floor(3.2) // 3
Math.floor(-3.2) // -4
Math.ceil(3.2) // 4
Math.ceil(-3.2) // -3```
* abs,max,min (绝对值,最大值,最小值)
Math.abs(1) // 1
Math.abs(-1) // 1
Math.max(2, -1, 5) // 5
Math.min(2, -1, 5) // -1```
- pow,sqrt
pow方法返回以第一个参数为底数、第二个参数为幂的指数值——开n次方
sqrt方法返回参数值的平方根。如果参数是一个负值,则返回NaN——求平方根
Math.pow(2, 2) // 4
Math.pow(2, 3) // 8
Math.sqrt(4) // 2
Math.sqrt(-4) // NaN```
######* random(随机数)常用
该方法返回0到1之间的一个伪随机数,可能等于0,但是一定小于1
`Math.random() // 0.7151307314634323`
一般我们是这么用的,在给定的范围拿一个整数
function randomAtoB (a , b) {
return Math.floor(Math.random() * ( b - a + 1 )) + a;
}```
- 三角函数
这个也很简单
Math.sin(0) // 0
Math.cos(0) // 1
Math.tan(0) // 0
Math.asin(1) // 1.5707963267948966
Math.acos(1) // 0
Math.atan(1) // 0.7853981633974483```
#Date
####1. Date的静态方法
* Date.now()
返回当前距离`1970年1月1日00:00:00`的毫秒数
![](http://upload-images.jianshu.io/upload_images/961879-6573c1313e9c75a1.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
* Date.parse()
parse方法用来解析日期**字符串**,返回距离1970年1月1日 00:00:00的毫秒数
![](http://upload-images.jianshu.io/upload_images/961879-e68f80446c2aaf9b.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
* Date.UTC()
默认情况下,Date对象返回的都是当前时区的时间
Date.UTC方法可以返回UTC时间。该方法接受年、月、日等变量作为参数,返回当前距离1970年1月1日 00:00:00 UTC的毫秒数
* Data()
你也可以直接调用Date(),返回一个当前日期和时间的字符串,这时候是否有参数结果一样。要注意大小写哦!
![](http://upload-images.jianshu.io/upload_images/961879-0f53930382d8009c.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
####2. Date的静态方法
身为一个对象,Date还能构造实例。
new Date();
new Date(1378218728000); // Tue Sep 03 2013 22:32:08 GMT+0800 (CST)
new Date("2013-02-15")
new Date("2013-FEB-15")
new Date("FEB, 15, 2013")
new Date("FEB 15, 2013")
new Date("Feberuary, 15, 2013")
new Date("Feberuary 15, 2013")
new Date("15, Feberuary, 2013")
new Date(2013) // Thu Jan 01 1970 08:00:02 GMT+0800 (CST)
new Date(2013,0) // Tue Jan 01 2013 00:00:00 GMT+0800 (CST)
new Date(2013,0,1) // Tue Jan 01 2013 00:00:00 GMT+0800 (CST)
new Date(2013,0,1,0) // Tue Jan 01 2013 00:00:00 GMT+0800 (CST)
new Date(2013,0,1,0,0,0,0) // Tue Jan 01 2013 00:00:00 GMT+0800 (CST)```
那么这个实例也有一些方法。
- get
Date.prototype.getTime():返回实例对象距离1970年1月1日00:00:00对应的毫秒数,等同于valueOf方法
Date.prototype.getDate():返回实例对象对应每个月的几号(从1开始)
Date.prototype.getDay():返回星期,星期日为0,星期一为1,以此类推
Date.prototype.getFullYear():返回四位的年份
Date.prototype.getMonth():返回月份-1(0表示1月,11表示12月)
Date.prototype.getHours():返回小时(0-23)
Date.prototype.getMilliseconds():返回毫秒(0-999)
Date.prototype.getMinutes():返回分钟(0-59)
Date.prototype.getSeconds():返回秒(0-59)
Date.prototype.getTimezoneOffset():返回当前时间与UTC的时区差异,以分钟表示,返回结果考虑到了夏令时因素```
* set
Date.prototype.setDate(date):设置实例对象对应的每个月的几号(1-31),返回改变后毫秒时间戳
Date.prototype.setFullYear(year [, month, date]):设置四位年份
Date.prototype.setHours(hour [, min, sec, ms]):设置小时(0-23)
Date.prototype.setMilliseconds():设置毫秒(0-999)
Date.prototype.setMinutes(min [, sec, ms]):设置分钟(0-59)
Date.prototype.setMonth(month [, date]):设置月份(0-11)
Date.prototype.setSeconds(sec [, ms]):设置秒(0-59)
Date.prototype.setTime(milliseconds):设置毫秒时间戳
* Date.prototype.toString()
toString方法返回一个完整的时间字符串
var today = new Date();
today.toString(); // "Fri Apr 03 2015 11:17:29 GMT+0800 (CST)"```
- Date.prototype.toDateString(),Date.prototype.toTimeString()
toDateString方法返回日期的字符串形式,toTimeString方法返回时间的字符串形式。
var today = new Date(1362790014000);
today.toDateString(); // "Fri Apr 03 2015"
today.toTimeString(); // "11:17:29 GMT+0800 (CST)"```
* toLocalDateString, toLocalTimeString
toLocalDateString方法返回一个字符串,代表日期的当地写法
toLocalTimeString方法返回一个字符串,代表时间的当地写法
var today = new Date(1362790014000);
today.toLocaleDateString(); // "2015/4/3"
today.toLocaleTimeString(); // "上午11:17:29"```
类型转换时,Date对象的实例如果转为数值,则等于对应的毫秒数;如果转为字符串,则等于对应的日期字符串。所以,两个日期对象进行减法运算,返回的就是它们间隔的毫秒数;进行加法运算,返回的就是连接后的两个字符串。
var then = new Date(2013,2,1);
var now = new Date(2013,3,1);
now - then
// 2678400000
now + then
// "Mon Apr 01 2013 00:00:00 GMT+0800 (CST)Fri Mar 01 2013 00:00:00 GMT+0800 (CST)" ````