scrimba
Learn Regex
Match Literal Strings
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
Match Literal Strings
Expand for more info
index.js
run
preview
console
let waldoIsHiding = "Somewhere Waldo is hiding in this text.";
let waldoRegex = /search/;
let result = waldoRegex.test(waldoIsHiding);
Console
index.html
-0:38