Merge pull request #1245 from alevmo/patch-1

Update article.md
This commit is contained in:
Ilya Kantor 2019-08-19 11:40:15 +03:00 committed by GitHub
commit 2af2207c5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,8 +2,8 @@
There are two sets of methods to deal with regular expressions.
1. First, regular expressions are objects of the built-in [RegExp](mdn:js/RegExp) class, it provides many methods.
2. Besides that, there are methods in regular strings can work with regexps.
1. First, regular expressions are objects of the built-in [RegExp](mdn:js/RegExp) class, which provides many methods.
2. Additionally, there are methods in regular strings that can work with regexps.
## Recipes