freeCodeCamp Find the Longest Word in a String

 找出最長單詞


       

            在句子中找出最長的單詞,並返回它的長度。 函數的返回值應該是一個數字。函數

 

 1 function findLongestWord(str) {
 2   // 分割字符串
 3   str=str.split(" ");
 4   var result=[],max=0;
 5   for(var i=0;i<str.length;i++)
 6     {
 7       result.push(str[i].length);
 8       result=result.sort(function(a,b){ return b-a;});
 9       max=result[0];
10       
11     }
12     return max;
13 }
14 
15 findLongestWord("The quick brown fox jumped over the lazy dog");

 

結果:ui

6
相關文章
相關標籤/搜索