Apple's Mistake
paulgraham.com723 ポイント投稿者 EliAndrewC269 コメント
function (xs) {
return _(xs).pluck('foo').filter().value();
}
That code clearly expects that xs is an array of objects. However, we might occasionally end up with xs being undefined, or with xs being an array but one of the elements is null, etc.