Created
December 6, 2019 04:44
-
-
Save daubattu/4f1d8a04a6de163a3c236d04589a01d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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