7 lines
104 B
Markdown
7 lines
104 B
Markdown
# A match for /d+? d+?/
|
|
|
|
What's the match here?
|
|
|
|
```js
|
|
alert( "123 456".match(/\d+? \d+?/g) ); // ?
|
|
```
|