Open fkling opened 9 years ago
Seconding this notion. To give an example, things around the "this" part, I had entered in: var foo = obj.bar() and received "success" for the submissions, whereas the answer you are looking for is probably: var foo = obj.bar; foo.call(obj);
var foo = obj.bar()
var foo = obj.bar;
foo.call(obj);
+1
In exercises #19 and #27 you ask very interesting questions but you never give the student a way to verify their answers.
Seconding this notion. To give an example, things around the "this" part, I had entered in:
var foo = obj.bar()
and received "success" for the submissions, whereas the answer you are looking for is probably:var foo = obj.bar;
foo.call(obj);