Skip to content

Instantly share code, notes, and snippets.

@adamant83
Created February 16, 2023 21:22
Show Gist options
  • Select an option

  • Save adamant83/bbe9ce26844f1eaa6fa3480e93a4bca6 to your computer and use it in GitHub Desktop.

Select an option

Save adamant83/bbe9ce26844f1eaa6fa3480e93a4bca6 to your computer and use it in GitHub Desktop.
class Person {
#name;
#location;
constructor(name, location) {
this.#name = name;
this.#location = location;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment