let user = {
age: 54,
name: 'Kendell',
magic: true,
alure: function(){
console.log('ara ara');
}
}
user.age; //O(1)
user.spell = 'enchant'; //O(1)
user.alure(); //O(1)
console.log(Object.values(user)); // prints only the values of the key-value pairs