From 297ae60f81ac3e3f2d3b9091714905d4f1dc09e3 Mon Sep 17 00:00:00 2001 From: vasilevx Date: Mon, 27 May 2019 19:46:19 +0300 Subject: [PATCH] Change number of flags --- 9-regular-expressions/01-regexp-introduction/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/9-regular-expressions/01-regexp-introduction/article.md b/9-regular-expressions/01-regexp-introduction/article.md index e69528c5..57fe02f5 100644 --- a/9-regular-expressions/01-regexp-introduction/article.md +++ b/9-regular-expressions/01-regexp-introduction/article.md @@ -77,7 +77,7 @@ alert( "

".search(regexp)); Regular expressions may have flags that affect the search. -There are only 5 of them in JavaScript: +There are only 6 of them in JavaScript: `i` : With this flag the search is case-insensitive: no difference between `A` and `a` (see the example below).