Skip to content

Commit f8711ed

Browse files
Completed Task
1 parent f87de8a commit f8711ed

File tree

1 file changed

+3
-0
lines changed
  • Regular-Expressions/Match-Letters-of-the-Alphabet

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 quick brown fox jumps over the lazy dog.";
2+
let alphabetRegex = /[a-z]/gi;
3+
let result = quoteSample.match(alphabetRegex)

0 commit comments

Comments
 (0)