5 ways to determine whether an object is an empty object in JS

5 ways to determine whether an object is an empty object in JS

1. Convert the json object into a json string, and then determine whether the string is "{}"

var data = {};
var b = (JSON.stringify(data) == "{}");
alert(b);//true

2. for in loop judgment

var obj = {};
var b = function() {
    for(var key in obj) {
        return false;
    }
    return true;
}
alert(b());//true

3. jQuery's isEmptyObject method

This method is a jQuery encapsulation of the 2 method (for in), and it needs to rely on jQuery when used.

var data = {};
var b = $.isEmptyObject(data);
alert(b);//true

4.Object.getOwnPropertyNames() method

This method uses the getOwnPropertyNames method of the Object object to obtain the property names in the object, store them in an array, and return the array object. We can determine whether this object is empty by judging the length of the array. Note: This method is not compatible with IE8 and has not been tested on other browsers.

var data = {};
var arr = Object.getOwnPropertyNames(data);
alert(arr.length == 0); //true

5. Use ES6's Object.keys() method

Similar to method 4, it is a new method of ES6, and the return value is also an array of attribute names in the object

var data = {};
var arr = Object.keys(data);
alert(arr.length == 0); //true

This concludes this article about 5 ways to use JS to determine whether an object is empty. For more information about how to use JS to determine whether an object is empty, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • JavaScript Simple Method to Determine if an Object {} is an Empty Object
  • js determines the instance of an empty object (super simple)
  • A review of several methods for judging empty objects in JS
  • Summary of several practical methods for JS to determine whether an object is an empty object

<<:  Detailed tutorial on installing MySQL 5.7.19 decompressed version on Windows Server 2016

>>:  Docker containers communicate directly through routing to achieve network communication

Recommend

About 3 common packages of rem adaptation

Preface I wrote an article about rem adaptation b...

A brief analysis of the game kimono memo problem

Today, after the game was restarted, I found that...

Detailed instructions for installing mysql5.7 database under centos7.2

The mysql on the server is installed with version...

Implementation of Redis master-slave cluster based on Docker

Table of contents 1. Pull the Redis image 2. Crea...

Implementation of building Kubernetes cluster with VirtualBox+Ubuntu16

Table of contents About Kubernetes Basic environm...

Analysis of the Linux input subsystem framework principle

Input subsystem framework The linux input subsyst...

How to install and configure SSH service in Ubuntu 18.04

Install ssh tool 1. Open the terminal and type th...

How to disable foreign key constraint checking in MySQL child tables

Prepare: Define a teacher table and a student tab...

Pure CSS implementation of radio and checkbox effect example

radio-and-checkbox Pure CSS to achieve radio and ...

Use of select, distinct, and limit in MySQL

Table of contents 1. Introduction 2. select 2.1 Q...

Discussion on the browsing design method of web page content

<br />For an article on a content page, if t...

The use of mysql unique key in query and related issues

1. Create table statement: CREATE TABLE `employee...

Detailed explanation of CSS3 elastic expansion box

use Flexible boxes play a vital role in front-end...

MySQL Best Practices: Basic Types of Partition Tables

Overview of MySQL Partitioned Tables As MySQL bec...