I would like to implement regex in Javascript to compare if my string matches the following pattern -
<digit><digit>/<digit><digit>/<digit><digit><digit><digit>
This is similar to the DD/MM/YYYY format. But I don't want any date specific validations. I just want to check if the string contains digits as per the given pattern.
Thanks!