Skip to content

Instantly share code, notes, and snippets.

@daubattu
Created December 6, 2019 04:44
Show Gist options
  • Save daubattu/4f1d8a04a6de163a3c236d04589a01d6 to your computer and use it in GitHub Desktop.
Save daubattu/4f1d8a04a6de163a3c236d04589a01d6 to your computer and use it in GitHub Desktop.
class User {
#salary = 1000;
}
const newUser = new User();
console.log(newUser.salary) // undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment