const str ='to lose your path is the way ro find that path'
const patt=/([a-f])\w+/i;
console.log(str.match(patt));-
다음과 같은 예제에서 괄호는 어떤 역할을 하는 건가요.
괄호가 있고 없고에 따라 결과가
괄호 없을 때
[ 'ath', input: 'to lose your path is the way ro find that path', groups: undefined ]
괄호 있을 때
[ 'ath', 'a', input: 'to lose your path is the way ro find that path', groups: undefined ]
이와 같이 나옵니다.