Functionutilsv0.7.0longestStringLengthFunction takes an array of strings or numbers and returns the number of characters in the longest string/number longestStringLength( arr: (string | number)[] ): numberlongestStringLength( arr: (string | number)[] ): numberExamplesCopylongestStringLength(['ab', 12345]); // 5longestStringLength(['ab', 12345]); // 5Paramsarrarr: (string | number)[]arr: (string | number)[]The array of strings or numbers