🎶 Sym - 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台

📕 思源笔记 - 一款桌面端笔记应用,支持 Windows、Mac 和 Linux

🎸 Solo - B3log 分布式社区的博客端节点,欢迎加入下一代社区网络

♏ Vditor - 一款浏览器端的 Markdown 编辑器

JavaScript - 省略后半部分参数的传入

2020-03-11

描述

创建一个函数,当调用 fn 时,将 partials 添加到最终执行函数所接受的参数之后。

提示

  • 使用扩展运算符 ...partials 添加到 fn 的参数列表之后

代码

const partialRight = (fn, ...partials) => (...args) => fn(...args, ...partials);

示例

对同一个朋友进行不同的问候:

const greet = (greeting, name) => greeting + ' ' + name + '!';
const greetJohn = partialRight(greet, 'John');
greetJohn('Hello'); // 'Hello John!'
greetJohn('How are you?'); // 'How are you? John!'

返回总目录

每天 30 秒系列之 JavaScript 代码


欢迎注册黑客派社区,开启你的博客之旅。让学习和分享成为一种习惯!

1 评论
wizardforcel • 2020-03-11
回复 删除

...放在定义/声明上,它是剩余参数:

let func = (...args) => { /* ... */ }
let [a, b, ...c] = [1, 2, 3, 4, 5]

放在其他地方是展开:

let arr1 = [1, 2, 3]
let arr2 = [0, ...arr1, 4]
console.log(...arr2)