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.
Each iteration will currently overwrite the value of var 'result'.
You need the '+=' operator:
Thus you're not considering some conditions:
Good luck and do your best!
The length of an object is one higher than the last index, since they are zero-indexed.
i
starts at the length of the object and this doesn't exist as an index. Example: length = 8, names[8].name -> returns undefined because there isn't an 8th index.This comment is hidden because it contains spoiler information about the solution