javascript-exercises icon indicating copy to clipboard operation
javascript-exercises copied to clipboard

Trivial non-important typo in 02_repeatString > repeatString.spec.js

Open MasQueElite opened this issue 2 years ago • 0 comments

Line 32: (...).match(/((hey))/g).length).(...) Should be: (...).match(/(hey)/g).length).(...)

Reason: You are already capturing a group.

MasQueElite avatar Mar 27 '22 15:03 MasQueElite