|
|
|
|
|
by danabramov
4209 days ago
|
|
It helped me immensely when I realized obj.method();
is a sugar for obj.method.call(obj);
Similarly, this picture helped me understand `bind`:http://i.stack.imgur.com/StZOr.png The a-ha moment for JS is when you realize it's a way simpler language than you thought it was. |
|