Object Manipulation Flashcards
1
Q
What is the difference between Object.freeze() and Object.seal()?
A
Object.freeze(obj): Prevents any changes (no adding, deleting, or modifying properties).
Object.seal(obj): Prevents adding/deleting properties, but allows modifying existing properties.
2
Q
What is Object.create() used for?
A
It creates a new object with the specified prototype.
Example: const person = { greet: () => console.log("Hello!") }; const student = Object.create(person); student.greet(); // "Hello!"
3
Q
Guess the output of the following code: const obj = Object.create(null); console.log(obj.toString);
A
undefined
Object.create(null) creates an object with no prototype, so it does not inherit toString from Object.prototype.