en.javascript.info/9-regular-expressions/10-regexp-greedy-and-lazy/1-lazy-greedy/task.md
2020-11-18 10:37:38 +08:00

104 B

A match for /d+? d+?/

What's the match here?

alert( "123 456".match(/\d+? \d+?/g) ); // ?