因此,我正在研究查找字符串中最長單詞的函數。但是,我無法找到如何console.log實際的單詞,而不是它具有的字符數量的值。這裏是我的功能:當你檢測到當前一個長於你最長的一個,將其保存當查找最長的單詞而不是字符數時返回單詞
var longestWord = function(str) {
return str.split(' ').reduce(function(acc, x) {
return x.length > acc.length ? x : acc
},'')
}
longestWord("I dislike taking recent microwaves"); //=> microwaves
因此,請參考最大的單詞。 – epascarello 2014-11-03 19:59:51
words.sort(function(a,b){return a.length-b.length})。pop() – dandavis 2014-11-03 21:11:58