scrimba
Learn Regex
Check for All or None
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

AboutCommentsNotes
Check for All or None
Expand for more info
index.js
run
preview
console
let favWord = "favorite";
let favRegex = /change/; // Change this line
let result = favRegex.test(favWord);
Console
index.html
-0:48