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.
Hi Folks, my basic tests pass, however the same basic tests are failing when I attempt the full suite of tests:
[ { name: 'Bart' },
{ name: 'Lisa' },
{ name: 'Maggie' },
{ name: 'Homer' },
{ name: 'Marge' } ]
---> Test Passed: Value == 'Bart, Lisa, Maggie, Homer & Marge'
[ { name: 'Bart' },
{ name: 'Lisa' },
{ name: 'Maggie' },
{ name: 'Homer' },
{ name: 'Marge' } ]
Must work with many names - Expected: 'Bart, Lisa, Maggie, Homer & Marge', instead got: 'Bart, Lisa, Maggie, Homer, Marge & '
JavaScript
JavaScript:
I'm able to pass the 5 test cases provided, however I'm still failing test cases: 8, 10, 11 and 14. Is there not a way to see the inputs for these test cases?