我創建了一個基於網格文字替代解決方案underscore.js
在我的代碼正在填充我有underscore.js一個小一點,可以幫助我的話適合在可用空間遊戲電網沒有突破電網障礙。
據我所知,它是非常強大的Java腳本,並不親自有一個問題。但是我的團隊經理希望擺脫它,因爲只有一個函數可以提供相同的解決方案,並且可以節省我擁有整個庫的jQuery。我將如何用一些jQuery替換這個?
function getWordToFitIn(spaceAvail, wordlist) {
var foundIndex = -1;
var answer = _.find(wordlist, function (word, index) {
if (word.length <= spaceAvail) {
foundIndex = index;
return true;
}
});
if (foundIndex == -1) {
answer = getXSpaces(spaceAvail);
_.find(wordlist, function (word, index) {
if (word[0] == " ") {
foundIndex = index;
return true;
}
});
}
if (foundIndex != -1) {
wordlist.splice(foundIndex, 1);
}
return answer;
}
研究源碼。 http://underscorejs.org/docs/underscore.html –
我看了一下。我明白它在做什麼,我只是不知道如何去取代它。 @ user1689607 –
哪部分你不明白? *(看起來好像我過去和你有過這樣的對話)。* –