删除数组中的所有的假值.
在JavaScript中,假值有false、null、0、""、undefined 和 NaN。
function bouncer(arr) {
// Don't show a false ID to this bouncer.
console.log(arr);
console.log(arr.filter(isBooleanObject));
return arr.filter(isBooleanObject);
}
//
function isBooleanObject(obj)
{
return obj!==false&&obj!==null&&obj!==0&&obj!==""&&obj!==undefined&&!Number.isNaN(obj);
}
bouncer([7, "ate", "", false, 9]);
bouncer([7, "ate", "", false, 9]) 应该返回 [7, "ate", 9].
bouncer(["a", "b", "c"]) 应该返回 ["a", "b", "c"].
bouncer([false, null, 0, NaN, undefined, ""]) 应该返回 [].
bouncer([1, null, NaN, 2, undefined]) 应该返回 [1, 2].