美文网首页
判断对象中是否有参数

判断对象中是否有参数

作者: 箱猫日和 | 来源:发表于2016-11-28 11:23 被阅读56次

    <pre><code>
    if (Object.keys(obj).length > 0)
    </pre></code>

    <pre><code>
    function isEmpty(obj) {

        for (let i in obj) {
                  return false
        }
        return true
    

    }
    </pre></code>

    相关文章

      网友评论

          本文标题:判断对象中是否有参数

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