也许以后(或永远不会),您可以使用实际的 实验
管道运算符
|>,其语法如下:
expression |> function
通过将函数作为单独的函数并为每个管道迭代流数组,可以实现所需的结果。
仅在FF中有效。 从版本58开始:此功能位于--enable-pipeline-operator
编译标志的后面。
const a = x => { x = x * x; console.log("map1=" + x); return x; }, b = x => { x = x * 3; console.log("map2=" + x); return x; }, c = x => console.log("forEach=" + x)var nums = [1, 2, 3, 4, 5, 6];nums.forEach(v => v |> a |> b |> c);
管道功能相同(功能组合启用管道),并关闭了所需功能。
const pipe = (...functions) => input => functions.reduce((acc, fn) => fn(acc), input), a = x => { x = x * x; console.log("map1=" + x); return x; }, b = x => { x = x * 3; console.log("map2=" + x); return x; }, c = x => console.log("forEach=" + x)var nums = [1, 2, 3, 4, 5, 6], pipeline = pipe(a, b, c);nums.forEach(pipeline);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)