We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e5a6e0 commit 831aff5Copy full SHA for 831aff5
Regular-Expressions/Match-All-Letters-and-Numbers/script.js
@@ -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