JavaScript Exercises Basic#14 - Finding the Longest String from Array
You will be given an array with random strings. Write a program which returns the longest string from array.
Result Example
Solution
We need a variable to store the longest element of the array. Let's call it 'max' and store the first element of th...
reyjang.hashnode.dev1 min read