使用 filter 可从数组中快速找出符合条件的元素组成新元素。示例如下:


[1,2,3].filter(i => i > 2)

> [3]

其中, i => i>2 为简化的 Lambda 表达式,等价于:


i => {

return i > 2

}