标签: javascript
这是如何运作的:
const invert = fn => (...args) => -fn(...args);
具体来说,(... args)发生了什么。它的行为好像是在第一个胖箭头之后将参数与函数分开,但我怀疑有更好,更具体的解释。感谢。