Y
Hacker News
new
|
ask
|
show
|
jobs
by
maxfurman
2712 days ago
I've read the TC39 proposal and I still don't understand what's wrong with "private".
1 comments
manigandham
2712 days ago
You can have a public field named the same as a private field and all fields in JS are accessed by "
this.fieldname
" so you need a way to access the private field differently.
link