Skip to content

Instantly share code, notes, and snippets.

@zeptobook
Created June 26, 2020 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zeptobook/10477d32aa9c2c33adf62da15cd6a180 to your computer and use it in GitHub Desktop.
Save zeptobook/10477d32aa9c2c33adf62da15cd6a180 to your computer and use it in GitHub Desktop.
class Message {
#message = "ZeptoBook"
greet() { console.log(this.#message) }
}
const greeting = new Message()
greeting.greet() // ZeptoBook
console.log(greeting.#message) // Private name #message is not defined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment