Hi Friends đź‘‹,

Welcome To Infinitbility! ❤️

To check the empty object in node js, just use the Object.keys() method it will create an array of object keys after then you can check the length and if it’s equal to 0 means the object is empty.

Like the following example, let’s take the below array of objects example here we will find an index of id 3 and delete it from the array.

const emptyObject = {};

 // 👇️ Object is empty
if(Object.entries(emptyObject).length === 0){
    // 👇️ Object is empty
    console.log("Object is empty");
}

Today, I’m going to show you How do I check the empty objects in node js, as above mentioned here, I’m going to use the Object.keys() method with length to check whether the object is empty or not.

Let’s start today’s tutorial how do you check the empty object in node js?

In this example, we will do

  1. Create a sample empty object variable
  2. Check empty objects in a function
  3. Check empty objects in a render method and print on a screen

Let’s write code…

var http = require("http");

//create a server object:
http
  .createServer(function (req, res) {
    let obj = {};
    let output = '';
    if(Object.keys(obj).length === 0){
        output = "Object is empty";
    } else {
        output = "Object is not empty";
    }
    console.log(output)
    res.write(output); //write a response to the client
    res.end(); //end the response
  })
  .listen(8080); //the server object listens on port 8080

As mentioned above, we are taken the example of a blank object state, use the Object.keys() to convert object keys to the array, and printed it if the object is empty.

I hope it’s help you, All the best 👍.