Salutations.
I'm posting Codewars challenges and my thought process in this series. I'm using JS and Node 18 whenever possible. Just for the sake of clarity, I'm making fair use of them.
"Friend or Foe?" can be simply done like this:
function friend(friends){ let trueFriends = friends.filter((dude) => dude.length==4 ); return trueFriends; }
Generally performant, and a simple solution. Does the job.
Regards. Drink water ???.
Previous
The above is the detailed content of Codewars - Friend or Foe?. For more information, please follow other related articles on the PHP Chinese website!