zoukankan      html  css  js  c++  java
  • 判断是否存在某个字段hasOwnProperty

    <script type="text/javascript">

            var obj = {
                a: 1,
                fn: function(){
     
                },
                c:{
                    d: 5
                }
            };
            console.log(obj.hasOwnProperty('a'));//true
            console.log(obj.hasOwnProperty('fn'));//true
            console.log(obj.hasOwnProperty('c'));//true
            console.log(obj.c.hasOwnProperty('d'));//true
            console.log(obj.hasOwnProperty('d'));//false, obj对象没有d属性
            var str = new String();
            console.log(str.hasOwnProperty('substring'));//false
            console.log(String.prototype.hasOwnProperty('substring'));//true
        </script>
  • 相关阅读:
    凸包模板
    1060E Sergey and Subway(思维题,dfs)
    1060D Social Circles(贪心)
    D
    牛客国庆集训派对Day2
    网络流
    Tarjan算法(缩点)
    莫队分块算法
    计算几何
    hdu5943素数间隙与二分匹配
  • 原文地址:https://www.cnblogs.com/ch-zaizai/p/8807720.html
Copyright © 2011-2022 走看看