Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
Best practices? Really?
I assume you had some error message: care to ask a bit more specifically?
This comment is hidden because it contains spoiler information about the solution
Try looking up MDN's documentation for function.apply(). Specifically the first argument. It might help to know what a 'context' is.
This comment is hidden because it contains spoiler information about the solution
I'm assuming javascript...
You're calling the method
apply
on an object, when it should be called on a function. This is probably because you're callingthis.apply
. Try presentinga = this
and then callinga.apply
- it's a weird JS bug.Help.. I have been stuck on this one all day and exhuasted pages and pages of online help.
I keep getting error message of no apply method on object.