Answers for "if an object keys contains an array how do we find the length of an array"

20

javascript get length of object

var person={
    "first_name":"Harry",
    "last_name":"Potter",
    "age":14
};
var personSize = Object.keys(person).length; //gets number of properties (3)
Posted by: Guest on July-22-2019

Code answers related to "if an object keys contains an array how do we find the length of an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language