0
/ 10
Given an array of Strings, return the longest String in the array. If the array is empty, return null.
Given an array of Strings, return the longest String in the array. If the array is empty, return null.
Examples:
longest({"abc","ab","a"}) -> "abc"
Your feedback will appear here when you check your answer.