scrimba
Learn Regex
Match Letters of the Alphabet
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 Letters of the Alphabet
AboutCommentsNotes
Match Letters of the Alphabet
Expand for more info
index.js
run
preview
console
let quoteSample = "The quick brown fox jumps over the lazy dog.";
let alphabetRegex = /change/;
let result = alphabetRegex;

console.log(result);
Console
index.html
-0:47