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 706b1f2 commit 69aaf57Copy full SHA for 69aaf57
5-regular-expressions/04-regexp-escaping/article.md
@@ -43,7 +43,7 @@ Here's what a search for a slash `'/'` looks like:
43
alert( "/".match(/\//) ); // '/'
44
```
45
46
-From the other hand, if we're not using `/.../`, but create a regexp using `new RegExp`, then we no need to escape it:
+On the other hand, if we're not using `/.../`, but create a regexp using `new RegExp`, then we don't need to escape it:
47
48
```js run
49
alert( "/".match(new RegExp("/")) ); // '/'
0 commit comments