scrimba
Learn Regex
Match Characters that Occur One or More Times
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 Characters that Occur One or More Times
AboutCommentsNotes
Match Characters that Occur One or More Times
Expand for more info
index.js
run
preview
console
let difficultSpelling = "Mississippi";
let myRegex = /change/;
let result = difficultSpelling.match(myRegex);

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