const person = { name: 'Jonathan', age: 21, gender: 'male' } console.log(Object.keys(person)); // Result [ 'name', 'age', 'gender' ]