JavaScript原生API

解析字符串对象

我们都知道,JavaScript对象可以序列化为JSON,JSON也可以解析成对象,但是问题是如果出现了一个既不是JSON也不是对象的”东西”,转成哪一方都不方便,那么eval就可以派上用场

var obj = "{a:1,b:2}"; // 看起来像对象的字符串
eval("("+ obj +")") // {a: 1, b: 2}

因为 eval 可以执行字符串表达式,我们希望将 obj 这个字符串对象 执行成真正的对象,那么就需要用eval。但是为了避免eval 将带 {} 的 obj 当语句来执行,我们就在obj的外面套了对 (),让其被解析成表达式。

& (按位与)

判断一个数是否为2的n次幂,可以将其与自身减一相与

var number = 4
(number & number -1) === 0 // true

^ (按位异或)

不用第三个变量,就可以交换两个变量的值

var a = 4,b = 3
a = a ^ b // 7
b = a ^ b // 4
a = b ^ a // 3

格式化Date

想得到format后的时间?现在不用再get年月日时分秒了,三步搞定

var temp = new Date();
var regex = /\//g;
(temp.toLocaleDateString() + ' ' + temp.toLocaleTimeString().slice(2)).replace(regex,'-');
 
// "2015-5-7 9:04:10"

想将format后的时间转换为时间对象?直接用Date的构造函数

new Date("2015-5-7 9:04:10");
 
// Thu May 07 2015 09:04:10 GMT+0800 (CST)

想将一个标准的时间对象转换为unix时间戳?valueOf搞定之

(new Date).valueOf();
 
// 1431004132641

许多朋友还提醒了这样可以快速得到时间戳

+new Date

一元加

一元加可以快速将字符串的数字转换为数学数字,即

var number = "23"
typeof number // string
typeof +number // number

可以将时间对象转为时间戳

new Date // Tue May 12 2015 22:21:33 GMT+0800 (CST)
+new Date // 1431440459887

转义URI

需要将url当做参数在路由中传递,现在转义之

var url = encodeURIComponent('http://segmentfault.com/questions/newest')
 
// "http%3A%2F%2Fsegmentfault.com%2Fquestions%2Fnewest"

再反转义

decodeURIComponent(url)
// "http://segmentfault.com/questions/newest"

Number

希望保留小数点后的几位小数,不用再做字符串截取了,toFixed拿走

number.toFixed() // "12346"
number.toFixed(3) // "12345.679"
number.toFixed(6) // "12345.678900"

参数范围为0~20,不写默认0

类型检测

typeof是使用最频繁的类型检测手段

typeof 3 // "number"
typeof "333" // "string"
typeof false // "boolean"

对于基本(简单)数据类型还是挺好的,但是一旦到了引用数据类型的时候,就不那么好使了

typeof new Date() // "object"
typeof [] // "object"
typeof {} // "object"
typeof null // "object"

前三个还能忍,null居然也返回object,你是在逗我吗!!!(ps:其实这是JavaScript的bug 人艰不拆 ꒰・◡・๑꒱ )

这时,我们会使用instanceof

toString instanceof Function
// true
(new Date) instanceof Date
// true
[] instanceof Object
// true
[] instanceof Array
// true

其实我们可以发现,[] 和 Object得到了true,虽然我们知道,[]也是对象,但是我们希望一个能更准确的判断类型的方法,现在它来了

使用Object.prototype.toString()来判断,为了让每一个对象都能通过检测,我们需要使用Function.prototype.call或者Function.prototype.apply的形式来调用

var toString = Object.prototype.toString;
 
toString.call(new Date) // "[object Date]"
toString.call(new Array) // "[object Array]"
toString.call(new Object) // "[object Object]"
toString.call(new Number) // "[object Number]"
toString.call(new String) // "[object String]"
toString.call(new Boolean) // "[object Boolean]"

要注意的是:toString方法极有可能被重写,所以需要使用的时候,可以直接使用Object.prototype.toString()方法

实现继承

看一个官方给的例子

//Shape - superclass
function Shape() {
this.x = 0;
this.y = 0;
}
 
Shape.prototype.move = function(x, y) {
this.x += x;
this.y += y;
console.info("Shape moved.");
};
 
// Rectangle - subclass
function Rectangle() {
Shape.call(this); //call super constructor.
}
 
Rectangle.prototype = Object.create(Shape.prototype);
 
var rect = new Rectangle();
 
rect instanceof Rectangle //true.
rect instanceof Shape //true.
 
rect.move(1, 1); //Outputs, "Shape moved."

通过call来获取初始化的属性和方法,通过Object.create来获取原型对象上的属性和方法迭代

ES5出了挺多的迭代函数,如map,filter,some,every,reduce等,这里有传送门,可以看到挺多的










转载于:https://my.oschina.net/houke/blog/479227

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值