fkling / jsbasics

An interactive introduction to basic and important concepts of JavaScript
14 stars 11 forks source link

Add solution + explanation to exercises #1

Open fkling opened 9 years ago

alexlupu commented 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);

ccoffey commented 8 years ago

+1

In exercises #19 and #27 you ask very interesting questions but you never give the student a way to verify their answers.