Added solution to challenge "Regular Expressions: Match Characters th… (#34668)

* Added solution to challenge "Regular Expressions: Match Characters that Occur Zero or More Times"

* fix: removed necessary brackets
This commit is contained in:
Luane
2019-02-05 13:03:19 -03:00
committed by Randell Dawson
parent 8d7bd3906c
commit f2c3d635ef

View File

@ -57,6 +57,8 @@ let result = chewieQuote.match(chewieRegex);
<section id='solution'>
```js
// solution required
let chewieQuote = "Aaaaaaaaaaaaaaaarrrgh!";
let chewieRegex = /Aa*/;
let result = chewieQuote.match(chewieRegex);
```
</section>