scrimba
Learn Regex
Match Beginning String Patterns
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

Match Beginning String Patterns
AboutCommentsNotes
Match Beginning String Patterns
Expand for more info
index.js
run
preview
console
let rickyAndCal = "Cal and Ricky both like racing.";
let calRegex = /change/; // Change this line
let result = calRegex.test(rickyAndCal);
console.log(result);
Console
index.html
-0:52