en.javascript.info/9-regular-expressions/08-regexp-greedy-and-lazy/1-lazy-greedy/task.md
2019-04-02 14:01:44 +03:00

7 lines
97 B
Markdown

# A match for /d+? d+?/
What's the match here?
```js
"123 456".match(/\d+? \d+?/g) ); // ?
```