js
摸咸鱼
这个作者很懒,什么都没留下…
展开
-
add(1)(2)(3)=6和add(1,2,3)=6
function add(...args) { let sum = args.reduce((t, v) => t + v, 0) function inner(...args1) { sum += args1.reduce((t, v) => t + v, 0) return inner } inner.toString = function () { // 重写toSting() 方法 ...原创 2021-03-23 15:28:05 · 255 阅读 · 0 评论 -
es6使用整理
本文中所有实例都是摘自微信公众号大佬们的文章目录...剩余操作符es6属性增强reduce高阶用法用例(25个只选择了几个作为示例)…剩余操作符基础用法1:展开 const list = [2,3,4] const expandList = [1,...list,5] console.log(expandList) //打印得到[1,2,3,4,5]基础用法2:收集 function foo1(a,b,...c){ console.log(a,b,c); } fo原创 2020-08-11 14:47:32 · 189 阅读 · 0 评论