scrimba
freeCodeCamp algorithm challenges
Find the Longest Word in a String with JavaScript
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Find the Longest Word in a String with JavaScript
AboutCommentsNotes
Find the Longest Word in a String with JavaScript
Expand for more info
index.js
run
preview
console
function findLongestWordLength(str) {
return str.length;
}

console.log(findLongestWordLength("The quick brown fox jumped over the lazy dog"));

/*

Return the length of the longest word in the provided sentence.

Your response should be a number.

findLongestWordLength("The quick brown fox jumped over the lazy dog") should return a number.
findLongestWordLength("The quick brown fox jumped over the lazy dog") should return 6.
findLongestWordLength("May the force be with you") should return 5.
findLongestWordLength("Google do a barrel roll") should return 6.
findLongestWordLength("What is the average airspeed velocity of an unladen swallow") should return 8.
findLongestWordLength("What if we try a super-long word such as otorhinolaryngology") should return 19.

*/
Console
"Hello"
,
index.html
-2:30