Make a program that filters a list of strings and returns a list with only your friends name in it. javascript code example
Example: Make a program that filters a list of strings and returns a list with only your friends name in it.javascript
function friend(friends){
return friends.filter(el => el.length === 4);
}