scrimba
Learn Regex
Match All Letters and Numbers
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 All Letters and Numbers
AboutCommentsNotes
Match All Letters and Numbers
Expand for more info
index.js
run
preview
console
let quoteSample = "The five boxing wizards jump quickly.";
let alphabetRegexV2 = /[a-z]/; // Change this line
let result = quoteSample.match(alphabetRegexV2).length;
console.log(result);
Console
index.html
-1:04