8 ms·
I just did return i.indexOf('.') > -1 ? i.substring(i.indexOf('.')+1) : false; Seemed to pass all test cases
by jrawlings 13y ago
I just did
return i.indexOf('.') > -1 ? i.substring(i.indexOf('.')+1) : false;
Seemed to pass all test cases
- EdgarVerona 13y agoAye, I did similarly, though for some reason I did >= 0 instead of > -1. I wonder what % of people choose one test approach vs. the other?
- taternuts 13y agoI chose >= 0, it's fun to learn!