What is the outcome of trying to mutate the properties of an object declared with const?

  • Mutation is allowed
  • Mutation is not allowed
  • Mutation is allowed, but with restrictions
  • Mutation is allowed only for primitive properties
When an object is declared with const, its reference cannot be reassigned, but the properties can be mutated. It's important to note that const protects the reference, not the content. So, attempting to reassign the entire object will result in an error, but modifying its properties is permissible.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *