Skip to content

Commit 1cdc860

Browse files
Completed Task
1 parent 2924441 commit 1cdc860

File tree

1 file changed

+3
-0
lines changed
  • Regular-Expressions/Match-Single-with-Multiple-Possibilities

1 file changed

+3
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
let quoteSample = "Beware of bugs in the above code; I have only proved it correct, not tried it.";
2+
let vowelRegex = /[aeiou]/gi;
3+
let result = quoteSample.match(vowelRegex);

0 commit comments

Comments
 (0)