-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLongestWord.js
38 lines (31 loc) · 1.2 KB
/
LongestWord.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
/* Have the function LongestWord(sen) take the sen parameter being passed
and return the largest word in the string. If there are two or more words
that are the same length, return the first word from the string with that
length. Ignore punctuation and assume sen will not be empty. */
function LongestWord(sen){
var senArray = sen.split(' ');
console.log('senArray[0]: ' + senArray[0]);
var longestWord = { 'longWord': senArray[0] };
console.log(longestWord.longWord);
console.log(longestWord.longWord.length);
console.log(senArray.length);
var testWord = { 'longWord': longestWord.longWord } ;
console.log('testWord: ' + testWord.longWord);
console.log(senArray);
for (i = 1; i < senArray.length; i++){
console.log(senArray);
testWord.longWord = senArray[i];
console.log('testword: ' + testWord.longWord);
if (longestWord.longWord.length < testWord.longWord.length ){
longestWord.longWord = testWord.longWord;
return longestWord.longWord;
}
// else {
// return longestWord.longWord;
// }
}
return longestWord.longWord;
}
LongestWord('a b c dee');
//LongestWord('coderbyte');
//LongestWord('this is some sort of sentence');