scrimba
Learn Regex
Specify Only the 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 Only the Lower Number of Matches
AboutCommentsNotes
Specify Only the Lower Number of Matches
Expand for more info
index.js
run
preview
console
let haStr = "Hazzzzah";
let haRegex = /change/; // Change this line
let result = haRegex.test(haStr);
Console
index.html
-0:29