79515551

Date: 2025-03-17 19:27:02
Score: 0.5
Natty:
Report link

as simple as that

const find = (objs, search) => objs.filter(
  obj => Object.values(obj).some(
    val => val.includes(search)
  )
);
Reasons:
  • Low length (1):
  • Has code block (-0.5):
Posted by: fedeghe