scrimba
Learn Regex
Match All 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

AboutCommentsNotes
Match All Numbers
Expand for more info
index.js
run
preview
console
let numString = "Your sandwich will be $5.00";
let numRegex = /change/; // Change this line
let result = numString.match(numRegex).length;
console.log(result);
Console
index.html
-0:28