Skip to content

Instantly share code, notes, and snippets.

@jkasaudhan
Created May 26, 2019 10:15
Show Gist options
  • Save jkasaudhan/da13ade1209d34738eaf3698bdf3c5cb to your computer and use it in GitHub Desktop.
Save jkasaudhan/da13ade1209d34738eaf3698bdf3c5cb to your computer and use it in GitHub Desktop.
Private class field in js
class Person {
  #salary = '12345'; // => private class field
getSalary() {
this.#salary;
}
}
class jack = new Person();
console.log(jack.#salary); // will prompt syntax error as it is private filed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment