In a scenario where you need to create private-like properties in an object, how would the Symbol type be used effectively?

  • Using Symbol.createPrivateProperty
  • Using Symbols as property names
  • Using Object.defineProperty with Symbol
  • Using private keyword
The correct option is using Symbols as property names. Symbols are unique and can be used as keys for object properties, providing a way to create private-like properties in an object. They help in avoiding naming conflicts and provide a level of encapsulation. Using Object.defineProperty with Symbol is a common approach to achieve this. The other options are incorrect as there is no direct Symbol.createPrivateProperty method, and the private keyword is not a standard feature in ES6 for creating private properties.
Add your answer
Loading...

Leave a comment

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