javascript-exercises
javascript-exercises copied to clipboard
Trivial non-important typo in 02_repeatString > repeatString.spec.js
Line 32: (...).match(/((hey))/g).length).(...)
Should be: (...).match(/(hey)/g).length).(...)
Reason: You are already capturing a group.