I'm getting back in the swing of things and am stuck on this regular expression.
'2s3d3s'.match(/\d\D+/);
Why is this not returning ['2s, '3d', 3s']?
I specified the regex to capture multiple instances but it's only catching the first instance.