码迷,mamicode.com
首页 > 其他好文 > 详细

5种判断类型的方法

时间:2017-04-11 09:28:03      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:tor   prot   array   typeof   val   length   ons   const   prototype   

Array.prototype.length = 100;
var arr = new Array(1,2,3);
console.log(arr._proto_ == Array._proto_)
console.log(arr.constructor == Array)
console.log(arr instanceof(Array)) // 也是在运行链上进行判断 for in(数组也是一个特殊的对象)
console.log(typeof arr) // 不用用于判断复杂的进行判断
console.log(arr.valueOf()) // 不太常用 原始数据

5种判断类型的方法

标签:tor   prot   array   typeof   val   length   ons   const   prototype   

原文地址:http://www.cnblogs.com/shirly77/p/6691922.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!