fork download
  1. const filterArray = (arr) => {
  2. const re = /^(hand)\w*[syle]$/i;
  3. return arr.filter((word) => re.test(word));
  4. };
  5.  
  6. console.log(
  7. filterArray([
  8. "handOn",
  9. "hands",
  10. "hanDLes",
  11. "Handcuffs",
  12. "handmade",
  13. "in-hands",
  14. "HANDINGLY",
  15. ])
  16. );
  17.  
Success #stdin #stdout 0.07s 31732KB
stdin
Standard input is empty
stdout
[ 'hands', 'hanDLes', 'Handcuffs', 'handmade', 'HANDINGLY' ]