String.prototype.matchAll( ) - String.prototype.match( )와 유사하게 동작 - 정규 표현식과 매칭되는 문자열, 세부 정보를 포함하는 iterator를 반환 예제) const text = "From 2019.01.29 to 2019.01.30"; const regexp = /(?\d{4}).(?\d{2}).(?\d{2})/gu; const results = text.match(regexp); console.log(results); // [ '2019.01.29', '2019.01.30' ] const text = "From 2019.01.29 to 2019.01.30"; const regexp = /(?\d{4}).(?\d{2}).(?\d{2})/gu; const..