scrimba
Learn Regex
Specify Exact Number of Matches
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Specify Exact Number of Matches
AboutCommentsNotes
Specify Exact Number of Matches
Expand for more info
index.js
run
preview
console
let timStr = "Timmmmber";
let timRegex = /change/; // Change this line
let result = timRegex.test(timStr);
Console
index.html
-0:33