If I have the following array :
array = ['a', 'abcde', 'ab'] ;
I would like to get the maximum length of the array elements ie 5 (for the element 'abcde').
I know that you can get the length of an array element via (eg) array[1].length but I don't know how to get the maximum length.
Any answer in JavaScript or jQuery would be great.
TIA
Paul Jones