Answers for "how to fing lenght of object in js"

54

javascript object length

var size = Object.keys(myObj).length;
Posted by: Guest on April-29-2020
3

can we find lenght of an object

Object.keys(myArray).length
Posted by: Guest on December-14-2020
1

find object length in javascript

//var size = Object.keys(myObj).length;

let object = {
  user:"hello",
  password:"123"
}

console.log(Object.keys(object).length)
> prints: 2
Posted by: Guest on March-02-2022
1

Length of a JavaScript object

Object.size = function(obj) {
  var size = 0,
    key;
  for (key in obj) {
    if (obj.hasOwnProperty(key)) size++;
  }
  return size;
};

// Get the size of an object
const myObj = {}
var size = Object.size(myObj);
Posted by: Guest on July-24-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language