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.
Loading...
Related Quiz
- How do mixins in ES6 help in achieving multiple inheritance?
- How can you import an entire module as an object in ES6?
- To insert a variable into a template literal, use the ${} __________.
- Consider a scenario where a module is exporting multiple functions, but only some are used. How does tree shaking impact this scenario?
- When an async function throws an error and it is not caught, it results in a rejected __________.