Is there a short way to find the longest string in a string array?
Something like arr.Max(x => x.Length);?
|
Is there a short way to find the longest string in a string array? Something like |
|||||
|
Probably more efficient, but only available since Javascript 1.8/ECMAScript 5 and not available by default in older browsers:
|
|||||
|
|
I would do something like this
|
|||||
|
|
|||
|
Using Array.prototype - (sort is similar to what was posted by @katsPaugh and @deceze while I was doing a fiddle) DEMO HERE
|
||||
|
|
|
This is really simple buggy code I have written 5 minutes ago. I havent time to fix bugs but if you get the idea you can change and use it.
|
|||
|
|
|
I was inspired of Jason's function and made a little improvements to it and got as a result rather fast finder:
Speed results: http://jsperf.com/longest-string-in-array/5 |
|||
|
|