摘要: ```js function currying() { const args = Array.prototype.slice.call(arguments); const inner = function () { args.push(...arguments); return inner; }; 阅读全文
posted @ 2023-08-14 19:32 Echoyya、 阅读(17) 评论(0) 推荐(0) 编辑