arr.filter(function(x,index){
return index%3===0 || x>=8;
})
index % 3===0 // index 是数组的下标
return index%3===0 || x>=8;
})
index % 3===0 // index 是数组的下标
2017-04-24
感觉function typeOf(ele)里面应该加上3个包装类型:
ele instanceof String
ele instanceof Boolean
ele instanceof Number
因为这三种包装类型 在使用typeof 时会返回object
ele instanceof String
ele instanceof Boolean
ele instanceof Number
因为这三种包装类型 在使用typeof 时会返回object