Question: Add parentheses to the regular expression to remember the street number (which is: 613) and apartment number (which is: Apt 57), but not remember the

Add parentheses to the regular expression to remember the street number (which is: 613) and apartment number (which is: Apt 57), but not remember the street name. 1 var address = "613 Amp St, Apt 57"; // Code will also be tested with "42 Jam St, Apt 3" 21 3 var re = /d+\s\w+\s\w+, \s\w+\s\d+/; 5 var result = re.exec(address); 6 console.log(result[1] + " " + result[2]); Check Try again
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
