scrimba
Learn Regex
Ignore Case While Matching
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

Ignore Case While Matching
AboutCommentsNotes
Ignore Case While Matching
Expand for more info
index.js
run
preview
console
let myString = "freeCodeCamp";
let fccRegex = /change/; // Change this line
let result = fccRegex.test(myString);
Console
index.html
-0:56