Find the Longest Word in a String - JavaScript Solution & Walkthrough
04/16 Find the Longest Word in a String
Return the length of the longest word in the provided sentence.
Your response should be a number.
function findLongestWordLength(str) {
return str.length;
}
findLongestWordLength("The quick brown fox jump...
benjaminsemah.hashnode.dev3 min read