Files
freecodecamp--freecodecamp/curriculum/challenges/english/blocks/basic-algorithm-scripting/a26cbbe9ad8655a977e1ceb5.md
T
wehub-resource-sync dde272c4b8
i18n - Build Validation / Validate i18n Builds (24) (push) Has been cancelled
CI - Node.js / Lint (24) (push) Has been cancelled
CI - Node.js / Build (24) (push) Has been cancelled
CI - Node.js / Test (24) (push) Has been cancelled
CI - Node.js / Test - Upcoming Changes (24) (push) Has been cancelled
CI - Node.js / Test - i18n (italian, 24) (push) Has been cancelled
CI - Node.js / Test - i18n (portuguese, 24) (push) Has been cancelled
CD - Docker - GHCR Images / Build and Push Images (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 11:55:53 +08:00

1.8 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
a26cbbe9ad8655a977e1ceb5 Find the Longest Word in a String 1 16015 find-the-longest-word-in-a-string

--description--

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

Your response should be a number.

--hints--

findLongestWordLength("The quick brown fox jumped over the lazy dog") should return a number.

assert.isNumber(
  findLongestWordLength('The quick brown fox jumped over the lazy dog')
);

findLongestWordLength("The quick brown fox jumped over the lazy dog") should return 6.

assert.strictEqual(
  findLongestWordLength('The quick brown fox jumped over the lazy dog'),
  6
);

findLongestWordLength("May the force be with you") should return 5.

assert.strictEqual(findLongestWordLength('May the force be with you'), 5);

findLongestWordLength("Google do a barrel roll") should return 6.

assert.strictEqual(findLongestWordLength('Google do a barrel roll'), 6);

findLongestWordLength("What is the average airspeed velocity of an unladen swallow") should return 8.

assert.strictEqual(
  findLongestWordLength(
    'What is the average airspeed velocity of an unladen swallow'
  ),
  8
);

findLongestWordLength("What if we try a super-long word such as otorhinolaryngology") should return 19.

assert.strictEqual(
  findLongestWordLength(
    'What if we try a super-long word such as otorhinolaryngology'
  ),
  19
);

--seed--

--seed-contents--

function findLongestWordLength(str) {
  return str.length;
}

findLongestWordLength('The quick brown fox jumped over the lazy dog');

--solutions--

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');