美文网首页
js判断数据类型方法总结

js判断数据类型方法总结

作者: meng_281e | 来源:发表于2018-09-20 18:37 被阅读0次
    var a = "iamstring.";
    var b = 222;
    var c= [1,2,3];
    var d = new Date();
    var e = function(){};
    

    1.typeof

    alert(typeof a) //string
    alert(typeof b) //number
    alert(typeof c)  //object
    alert(typeof d)  //object
    alert(typeof e)  //function
    

    2.instanceof

    判断已知是Object类型

    alert(c instanceof Array) //true
    alert(d instanceof Date) // true
    alert(f instanceof Function) // true
    注意:instanceof 后面一定要是对象类型,并且大小写不能错,该方法适合一些条件选择或分支。
    

    3.constructor

    alert(c.constructor === Array) //true
    alert(d.constructor === Date) //true
    alert(e.constructor === Function)//true
    

    4.Object.is()

    ES5 比较两个值是否相等,只有两个运算符:相等运算符(==)和严格相等运算符(===)。它们都有缺点,前者会自动转换数据类型,后者的NaN不等于自身,以及+0等于-0。JavaScript 缺乏一种运算,在所有环境中,只要两个值是一样的,它们就应该相等。

    ES6 提出“Same-value equality”(同值相等)算法,用来解决这个问题。Object.is就是部署这个算法的新方法。它用来比较两个值是否严格相等,与严格比较运算符(===)的行为基本一致。

    Object.is('foo', 'foo')
    // true
    Object.is({}, {})
    // false
    不同之处只有两个:一是+0不等于-0,二是NaN等于自身。

    +0 === -0 //true
    NaN === NaN // false

    Object.is(+0, -0) // false
    Object.is(NaN, NaN) // true
    ES5 可以通过下面的代码,部署Object.is。

    Object.defineProperty(Object, 'is', {
    value: function(x, y) {
    if (x === y) {
    // 针对+0 不等于 -0的情况
    return x !== 0 || 1 / x === 1 / y;
    }
    // 针对NaN的情况
    return x !== x && y !== y;
    },
    configurable: true,
    enumerable: false,
    writable: true
    });

    相关文章

      网友评论

          本文标题:js判断数据类型方法总结

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