文件名称:proposal-array-filtering:简化过滤数组的建议
文件大小:18KB
文件格式:ZIP
更新时间:2024-05-29 05:56:38
HTML
提案数组过滤 添加Array.prototype.filterOut的建议。 const array = [ 1 , 2 , 3 , 4 , 5 ] ; // filter keeps the items that return true. array . filter ( i => ( i < 3> [1, 2]; // filterOut removes the items that return true. array . filterOut ( i => ( i < 3> [3, 4, 5]; 冠军 贾斯汀·( ) 地位 目前:1 动机 Array.p.filter令人困惑。 我经常不得不问自己“我是保留还是过滤掉当前项目?”。 “保持” 表示返回true将保留当前项目。 “过滤掉” 表示返回true将删除当前项目。 Arr
【文件预览】:
proposal-array-filtering-master
----index.html(51KB)
----.gitattributes(87B)
----spec.emu(4KB)
----LICENSE(1KB)
----README.md(3KB)
----.npmrc(19B)
----.gitignore(661B)
----package.json(446B)