I have an array of strings, and want to find a singular string in it that contains a date. The date contains the format "MM/DD/YY", but could be any date at all. I want to do something to the effect of
arr.find(/\d\d/\d\d/\d\d/);
The issue is, using a "/" in the regex expression causes the expression to end. How could I write a regex expression in Javascript that could find a string of any date in this format?