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.
2 parents 9ed7ca9 + 5ff0a30 commit fbec8ebCopy full SHA for fbec8eb
9-regular-expressions/04-regexp-anchors/article.md
@@ -16,7 +16,7 @@ The pattern `pattern:^Mary` means: "string start and then Mary".
16
Similar to this, we can test if the string ends with `snow` using `pattern:snow$`:
17
18
```js run
19
-let str1 = "it's fleece was white as snow";
+let str1 = "its fleece was white as snow";
20
alert( /snow$/.test(str1) ); // true
21
```
22
0 commit comments