We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e8edaf commit 876674fCopy full SHA for 876674f
1 file changed
9-regular-expressions/09-regexp-groups/2-find-decimal-numbers/task.md
@@ -9,5 +9,5 @@ let reg = /your regexp/g;
9
10
let str = "-1.5 0 2 -123.4.";
11
12
-alert( str.match(re) ); // -1.5, 0, 2, -123.4
+alert( str.match(reg) ); // -1.5, 0, 2, -123.4
13
```
0 commit comments