Day 7: Regular Expressions I

Problem Link

Solution

regEx1.js
let re = /^([aeiou]).+\1$/;

Last updated

Was this helpful?