array-comprehensions:函数式数组理解

时间:2024-07-21 06:09:10
【文件属性】:

文件名称:array-comprehensions:函数式数组理解

文件大小:4KB

文件格式:ZIP

更新时间:2024-07-21 06:09:10

JavaScript

数组理解 如果您不想使用 6to5 或 traceur,请使用数组推导式。 安装 npm install array-comprehensions 用法 var forOf = require ( 'array-comprehensions' ) ; function inc ( x ) { return x + 1 ; } function mul ( x , y ) { return x * y ; } function sqr ( x ) { return x * x ; } function isGreatherThan1 ( x ) { return x > 1 } // [for (x of [1,2,3]) inc(x)] forOf ( [ 1 , 2 , 3 ] , inc ) ; // => [2, 3, 4] // [for (x of [1,2


【文件预览】:
array-comprehensions-master
----.jshintrc(601B)
----forOf.js(1KB)
----test.js(1KB)
----.travis.yml(38B)
----README.md(2KB)
----.editorconfig(253B)
----.gitignore(97B)
----package.json(685B)

网友评论