79803635

Date: 2025-10-29 10:02:58
Score: 1
Natty:
Report link
return items.every((item) => item.length >= 5);

It means:

function(item) {
  if(item.length >= 5) {
    return true; 
  }
}

As in, get only those items that are length more or equal with 5.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Raymond Seger