美文网首页
JS判断类型

JS判断类型

作者: Jalon | 来源:发表于2016-11-30 11:13 被阅读0次
    var is = function (obj,type) { 
    return (type === "Null" && obj === null) || 
    (type === "Undefined" && obj === void 0 ) || 
    (type === "Number" && isFinite(obj)) || 
    Object.prototype.toString.call(obj).slice(8,-1) === type; 
    }
    

    相关文章

      网友评论

          本文标题:JS判断类型

          本文链接:https://www.haomeiwen.com/subject/npttmttx.html