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.
very nice! localeCompare() would have saved me several lines.
Very nice, I learned something about .every() thanks to this solution.
You are returning true inside your for loop, assuming your code aboe was a copy and paste. This would mean you are only ever going to iterate once, effectively only checking for the letter 'a' before returning either false or true.
This was a clever way to look into the different types of equality javascript is capable of calculating. I was initially stuck with the same test fail that many others are reporting; but luckily had recently encountered this difficulty on a web app I am working on. I was able to pass all tests successfully.