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

深度封装typeof判断

时间:2019-02-09 19:36:33      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:prototype   typeof   str   val   ber   eof   lse   color   return   

function myTypeof(val){
    var type = typeof(val);
    var myString = Object.prototype.toString; 
    var res = {
        ‘[object Object]‘ : ‘object‘,
        ‘[object Array]‘ : ‘array‘,
        ‘[object Number]‘ : ‘object number‘,
        ‘[object String]‘ : ‘object string‘,
        ‘[object Boolean]‘ : ‘object boolean‘,
    };
    if(val === null){
        return ‘null‘
    }else if(type == ‘object‘){
        var tt = myString.call(val);
        return res[tt]
    }else{
        return type
    }

}
console.log(myTypeof(new Number))

 

深度封装typeof判断

标签:prototype   typeof   str   val   ber   eof   lse   color   return   

原文地址:https://www.cnblogs.com/xm16/p/10357743.html

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