--- id: a26cbbe9ad8655a977e1ceb5 title: Find the Longest Word in a String challengeType: 5 forumTopicId: 16015 --- ## Description
Return the length of the longest word in the provided sentence. Your response should be a number.
## Instructions
## Tests
```yml tests: - text: findLongestWordLength("The quick brown fox jumped over the lazy dog") should return a number. testString: assert(typeof findLongestWordLength("The quick brown fox jumped over the lazy dog") === "number"); - text: findLongestWordLength("The quick brown fox jumped over the lazy dog") should return 6. testString: assert(findLongestWordLength("The quick brown fox jumped over the lazy dog") === 6); - text: findLongestWordLength("May the force be with you") should return 5. testString: assert(findLongestWordLength("May the force be with you") === 5); - text: findLongestWordLength("Google do a barrel roll") should return 6. testString: assert(findLongestWordLength("Google do a barrel roll") === 6); - text: findLongestWordLength("What is the average airspeed velocity of an unladen swallow") should return 8. testString: assert(findLongestWordLength("What is the average airspeed velocity of an unladen swallow") === 8); - text: findLongestWordLength("What if we try a super-long word such as otorhinolaryngology") should return 19. testString: assert(findLongestWordLength("What if we try a super-long word such as otorhinolaryngology") === 19); ```
## Challenge Seed
```js function findLongestWordLength(str) { return str.length; } findLongestWordLength("The quick brown fox jumped over the lazy dog"); ```
## Solution
```js function findLongestWordLength(str) { return str.split(' ').sort((a, b) => b.length - a.length)[0].length; } findLongestWordLength("The quick brown fox jumped over the lazy dog"); ```