2018-10-04 14:37:37 +01:00
---
id: a26cbbe9ad8655a977e1ceb5
title: Find the Longest Word in a String
isRequired: true
challengeType: 5
2019-07-31 11:32:23 -07:00
forumTopicId: 16015
2018-10-04 14:37:37 +01:00
---
## Description
<section id='description'>
Return the length of the longest word in the provided sentence.
Your response should be a number.
2019-11-19 19:54:48 -05:00
Remember to use <a href="https://www.freecodecamp.org/forum/t/how-to-get-help-when-you-are-stuck-coding/19514" target="_blank">Read-Search-Ask</a> if you get stuck. Write your own code.
2018-10-04 14:37:37 +01:00
</section>
## Instructions
<section id='instructions'>
</section>
## Tests
<section id='tests'>
```yml
tests:
- text: <code>findLongestWordLength("The quick brown fox jumped over the lazy dog")</code> should return a number.
2019-07-24 01:47:32 -07:00
testString: assert(typeof findLongestWordLength("The quick brown fox jumped over the lazy dog") === "number");
2018-10-04 14:37:37 +01:00
- text: <code>findLongestWordLength("The quick brown fox jumped over the lazy dog")</code> should return 6.
2019-07-24 01:47:32 -07:00
testString: assert(findLongestWordLength("The quick brown fox jumped over the lazy dog") === 6);
2018-10-04 14:37:37 +01:00
- text: <code>findLongestWordLength("May the force be with you")</code> should return 5.
2019-07-24 01:47:32 -07:00
testString: assert(findLongestWordLength("May the force be with you") === 5);
2018-10-04 14:37:37 +01:00
- text: <code>findLongestWordLength("Google do a barrel roll")</code> should return 6.
2019-07-24 01:47:32 -07:00
testString: assert(findLongestWordLength("Google do a barrel roll") === 6);
2018-10-04 14:37:37 +01:00
- text: <code>findLongestWordLength("What is the average airspeed velocity of an unladen swallow")</code> should return 8.
2019-07-24 01:47:32 -07:00
testString: assert(findLongestWordLength("What is the average airspeed velocity of an unladen swallow") === 8);
2018-10-04 14:37:37 +01:00
- text: <code>findLongestWordLength("What if we try a super-long word such as otorhinolaryngology")</code> should return 19.
2019-07-24 01:47:32 -07:00
testString: assert(findLongestWordLength("What if we try a super-long word such as otorhinolaryngology") === 19);
2018-10-04 14:37:37 +01:00
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
```js
function findLongestWordLength(str) {
return str.length;
}
findLongestWordLength("The quick brown fox jumped over the lazy dog");
```
</div>
</section>
## Solution
<section id='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");
```
</section>