An ES6 class method can be made private by prefixing its name with __________.
- private
- this
- protected
- underscore
In ES6, a class method can be made private by prefixing its name with an underscore. This convention signals to other developers that the method is intended for internal use and should not be accessed directly from outside the class. While not providing true privacy, it serves as a convention for indicating the method's intended visibility.
Loading...
Related Quiz
- Can a Symbol be used as an index in an Array?
- How does inheritance of static methods differ from that of instance methods in ES6?
- Dynamic imports return a __________ which resolves to the module.
- How does the use of mixins and composition in ES6 aid in code reusability and maintainability?
- What is a common pitfall when chaining multiple asynchronous operations using Promises?