What is the key feature of enhanced object literals in ES6 that allows properties to be set more concisely?

  • Shorthand property notation
  • Computed property names
  • Method shorthand notation
  • Default parameter values
In enhanced object literals, shorthand property notation allows concise property assignment. This means you can omit the repetition of the property name if it matches the variable name. This enhances code readability.
Add your answer
Loading...

Leave a comment

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