Answers for "takes an array of strings as an argument and returns the length of the longest string. javascript"

6

find length of longest string in array javascript

const findLongest = words => Math.max(...(words.map(el => el.length)));

// Example
findLongest(['always','look','on','the','bright','side','of','life']);  // 6
Posted by: Guest on July-02-2020

Code answers related to "takes an array of strings as an argument and returns the length of the longest string. javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language