欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js判断一个对象是否为空

程序员文章站 2024-02-20 19:58:28
...

欢迎访问 我的博客https://www.xuehuayu.cn

查看原文


  function isEmpty(obj) {
    if (Object.prototype.toString.call(obj) !== '[object Object]') return true
    for (var attr in obj) {
      return false
    }
    return true
  }

  function isEmpty(obj) {
    rturn Object.keys(obj).length === 0
  }

相关标签: js javascript