My code: here
- Responder #1 (here) - This individual took a similar approach, though they did not utilize a ternary. Additionally, they used an interesting check with the modulo to ensure that the remainder for the
year / 100was greater than 0, and not equal to 0. I assume this was done in place of ensuring that it was not cleanly divisible by 100, but I found it to be a less readable implementation. - Responder #2 (here) - This individual's approach was verbose with regard to usage of
returnstatements for true or false, but, as a result, it was easy to follow their thought process. I was intrigued to see usage of anifstatement after anelse if. It indicated a level of flexibility within JavaScript syntax that I wouldn't have expected. - Responder #3 ([here](http://exercism.io/submissions/