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 924ec1e commit 5ba5f8bCopy full SHA for 5ba5f8b
5-regular-expressions/09-regexp-groups/1-find-webcolor-3-or-6/task.md
@@ -8,7 +8,7 @@ let reg = /your regexp/g;
8
9
let str = "color: #3f3; background-color: #AA00ef; and: #abcd";
10
11
-alert( str.match(reg) ); // #3f3 #AA0ef
+alert( str.match(reg) ); // #3f3 #AA00ef
12
```
13
14
P.S. This should be exactly 3 or 6 hex digits: values like `#abcd` should not match.
0 commit comments