Array.prototype.takeWhile = function (predicate) {
'use strict';
var $self = this
if (typeof predicate === 'function') {
let flagged = false, matching_count = 0, nomatching_count = 0;
for (let i = 0; i < $self.length; i++) {
let e = $self[i]
if (predicate(e)) {
if (!nomatching_count) {
matching_count++
} else {
flagged = true
break
}
} else {
nomatching_count++
}
}
return !flagged ? $self.slice(0, matching_count) : $self
}
throw new TypeError('predicate must be a function')
};
var test = function() {
var array = [1, 2, 3, 4, 5];
alert(array.takeWhile(x => x <= 3))
};
<button onclick="test()">Click me</button>
的返回類型的條件後:
if (typeof predicate === 'function') {
}
我要問:如何檢查predicate
返回類型?
我想阻止這種情況:
var array = [1, 2, 3, 4, 5];
alert(array.takeWhile(function() {}));
不知道這是可能的。 JavaScript函數可以在一次調用時返回一個數字,在另一次調用時可以返回一個字符串。 –
爲什麼你需要防止這種情況?其他數組方法對此沒有任何檢查。 – Soviut
@Soviut消息說:'謂詞必須是一個函數',而'function(){}'是一個沒有任何返回類型的函數。 –