You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Property 'groups' does not exist on type 'RegExprMatchArrayconsole.log("john_doe".match(/^(?<first>[a-z]+).+$/).groups.first)// johnconsole.log((<any>"john_doe".match(/^(?<first>[a-z]+).+$/)).groups.first)// john
Expected behavior:
Not type error
Actual behavior:
Type mismatch: Property 'groups' does not exist on type 'RegExprMatchArray'