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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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!"

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly