scrimba
Learn Regex
Specify Upper and Lower 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 Upper and Lower Number of Matches
AboutCommentsNotes
Specify Upper and Lower Number of Matches
Expand for more info
index.js
run
preview
console
let ohStr = "Ohhh no";
let ohRegex = /change/; // Change this line
let result = ohRegex.test(ohStr);
Console
index.html
-1:11