greggubarev 2018-10-16 12:26:45 +04:00 committed by Aditya
parent 891152863a
commit d644a2f494

View File

@ -54,6 +54,8 @@ let result = difficultSpelling.match(myRegex);
<section id='solution'>
```js
// solution required
let difficultSpelling = "Mississippi";
let myRegex = /s+/g; // Change this line
let result = difficultSpelling.match(myRegex);
```
</section>