Q
How can you prevent modifications to the properties of a JavaScript object?

Answer & Solution

Answer: Option C
Solution:
You can prevent modifications to the properties of a JavaScript object by using Object.freeze() to freeze the object, making its properties immutable.
Related Questions on Average

Which statement is true about constant objects in JavaScript?

A). A. The properties of a constant object cannot be changed

B). B. Constant objects are frozen and immutable

C). C. Constant objects cannot have properties added or deleted

D). D. The object reference can be reassigned

What does the const keyword do when used to declare an object in JavaScript?

A). A. Makes the object immutable

B). B. Prevents reassignment of the object reference

C). C. Freezes all properties of the object

D). D. All of the above

What happens if you try to reassign a constant object to a new object in JavaScript?

A). A. No error, the assignment is successful

B). B. TypeError is thrown

C). C. SyntaxError is thrown

D). D. ReferenceError is thrown

What is the correct way to modify a property of a constant object in JavaScript?

A). A. Use the delete keyword

B). B. Use the const keyword for the property

C). C. Use dot notation or bracket notation to access and modify the property

D). D. Use Object.freeze() to freeze the object

What is the data type of a constant object in JavaScript?

A). A. Object

B). B. Array

C). C. Function

D). D. String

How can you change the properties of a constant object in JavaScript?

A). A. Use Object.freeze()

B). B. Use const for each property

C). C. Use the delete keyword to remove properties

D). D. Use dot notation or bracket notation

What happens if you use Object.freeze() on a constant object in JavaScript?

A). A. The object reference becomes mutable

B). B. The properties of the object become immutable

C). C. The object becomes frozen and cannot be modified

D). D. A TypeError is thrown

How can you ensure that a constant object remains unchanged in JavaScript?

A). A. Use Object.preventExtensions()

B). B. Use Object.freeze() to freeze the object

C). C. Use const for each property

D). D. All of the above

Which statement about constant objects in JavaScript is correct?

A). A. Constant objects can have their properties reassigned

B). B. Constant objects cannot have properties added or removed

C). C. Constant objects are only applicable to primitive values

D). D. Constant objects are mutable

Which of the following will cause an error when used with a constant object in JavaScript?

A). A. Modifying a property using bracket notation

B). B. Adding a property using dot notation

C). C. Deleting a property

D). D. Reassigning the object reference