Skip to content
Advertisement

How to find longer Strings from an Array?

I want to find Longer Strings from this array:

const myArr = [“first”, “second”, “third”, “fourth”, “fifth”, “sixth”, “seven”, “eighth”]

in this array “second”,”fourth”,”eighth” has length of 6. I want to return these in an array.

JavaScript

expected output is: [“second”,”fourth”,”eighth”]

but returns =[“first”,”second”]

Advertisement

Answer

Easier if you use filter instead:

JavaScript

That returns:

JavaScript

Or, as Sash mentions below, it can be done in a single pass, although the solution is not as readable:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement