Skip to content

Commit 831aff5

Browse files
Completed Task
1 parent 5e5a6e0 commit 831aff5

File tree

1 file changed

+3
-0
lines changed
  • Regular-Expressions/Match-All-Letters-and-Numbers

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 = "The five boxing wizards jump quickly.";
2+
let alphabetRegexV2 = /\w/g;
3+
let result = quoteSample.match(alphabetRegexV2).length;

0 commit comments

Comments
 (0)