-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfind-the-longest-word-in-a-string.js
58 lines (41 loc) · 1.12 KB
/
find-the-longest-word-in-a-string.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Find the Longest Word in a String
/*
Return the length of the longest word in the provided sentence.
Your response should be a number.
*/
// Solved by using a for loop
function findLongestWordLength(str) {
const arr = str.split(' ');
let longestWord = 0;
let i;
for (i = 0; i < arr.length; i++) {
if (arr[i].length > longestWord) {
longestWord = arr[i].length;
}
}
return longestWord;
}
findLongestWordLength('The quick brown fox jumped over the lazy dog');
// Solved by using the .map() method
function findLongestWordLength(str) {
const arr = str.split(' ');
let longestWord = 0;
const sentence = arr.map(word => {
if (word.length > longestWord) {
longestWord = word.length;
}
});
return longestWord;
}
findLongestWordLength('The quick brown fox jumped over the lazy dog');
// Solved by using the .reduce() method
function findLongestWordLength(str) {
const arr = str.split(' ');
return arr.reduce((acc, cur) => {
if (cur.length > acc) {
acc = cur.length;
}
return acc;
}, 0);
}
findLongestWordLength('The quick brown fox jumped over the lazy dog');