Protecting Properties
This lesson explains the steps to hide properties in the ES6 version of classes.
We'll cover the following...
Hiding Properties in ES6
In order to hide the class properties, they can be declared inside the constructor
using the var
keyword so that they’re ...