if an object keys contains an array how do we find the length of an array code example
Example: 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)