微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – 地图,findIndex和过滤器组合

我在 across下面找了一个函数,并不完全确定它在做什么.
.filter(note => note)的目的是什么?

laneNotes: props.lane.notes.map(id => state.notes[
  state.notes.findindex(note => note.id === id)
]).filter(note => note)

也可以为每个音符执行过滤器,或者在所有音符通过地图循环后只执行一次?

解决方法

.filter(note => note)将过滤所有有价值的值.它相当于:.filter(布尔)

Also does filter get executed for each notes 
or only once after all notes are looped over by map?

docs

The filter() method creates a new array with all elements that pass
the test implemented by the provided function

console.log([0,2,'',false,null,true,undefined].filter(item => item));
console.log([0,undefined].filter(Boolean));

javascript中的所有falsy值:

> null>假> 0>”/“”>未定义> NaN

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐