手记

JS中Boolean函数的使用方法和实例

真假美猴王!

删除数组中的所有假值。

在JavaScript中,假值有false、null、0、""、undefined 和 NaN。

代码:

function bouncer(arr) {
  // Don't show a false ID to this bouncer.
  return arr.filter(function(val){return Boolean(val);});
}

bouncer([7, "ate", "", false, 9]);
0人推荐
随时随地看视频
慕课网APP