Update 12_day_regular_expressions.md

Fixed a Typo
pull/750/head
Rama Krishnan V 2 years ago committed by GitHub
parent 65e85f642b
commit 70af7f5feb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -48,7 +48,7 @@
A regular expression or RegExp is a small programming language that helps to find pattern in data. A RegExp can be used to check if some pattern exists in a different data types. To use RegExp in JavaScript either we use RegExp constructor or we can declare a RegExp pattern using two forward slashes followed by a flag. We can create a pattern in two ways.
To declare a string we use a single quote, double quote a backtick to declare a regular expression we use two forward slashes and an optional flag. The flag could be g, i, m, s, u or y.
To declare a string we use a single quote, double quote or a backtick. Likewise, to declare a regular expression we use two forward slashes and an optional flag. The flag could be g, i, m, s, u or y.
### RegExp parameters

Loading…
Cancel
Save