How to use Object.entries() method In Javascript

In this approach, we are using Object.entries() method. after passing the given object into this method by calling length property of the object we are getting the length of the object.

Example: This example shows the implementation of the above-explained approach.

JavaScript




let object1 = {
    "rajnish": "singh",
    "sanjeev": "sharma",
    "suraj": "agrahari",
    "yash": "khandelwal"
};
  
let length = Object.entries(object1).length
console.log(length);


Output

4

How to get the size of a JavaScript object ?

In this article, we will see the methods to find the size of a JavaScript object.

These are the following ways to solve the problem:

Table of Content

  • Using Object.keys() method
  • Using Object.objsize() method
  • Using Object.entries() method
  • Using Object.values() method

Similar Reads

Using Object.keys() method

We can get the size of the javascript object with the help of Object.keys() method.  Create an object variable and assign values to it Create a variable that shows the size Call the Object.keys(object-name).length and assign it to the variable (in step 2)....

Using Object.objsize() method

...

Using Object.entries() method

Create an object variable and assign values to it Create a variable that shows the size Pass the object name to Object.objsize which further enters the function that calculates and returns the size and assigns it to the variable....

Using Object.values() method

...

Contact Us