Y
Hacker News
new
|
ask
|
show
|
jobs
by
wahnfrieden
5121 days ago
A bit confusing since it's a common convention to use # to refer to instance members, e.g. Foo#bar means my_instantiation_of_foo.bar
1 comments
tantalor
5121 days ago
That's exactly what happens in the JavaScript case:
new Array().sort === Array.prototype.sort # true
link