Quick actions

cmd+k|ctrl+k

Navigation

Languages

Basic Hash Table

Snippet info

Language

JavaScript

Visibility

public

Author

gyanirocks

Created

2025-03-10T14:40:43.361221Z

Updated

2025-03-10T14:40:43.361221Z

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
INFO