摘要:
大致分为四类 增删改查 增:push ,unshift ,splice 删:pop , shift ,reduce , reduceRight 改:map , fill 查:every , filter ,find ,findIndex ,includes ,indexOf ,lastIndexof 阅读全文
摘要:
实现一个函数add(1,2)最简单的方式: 1.已知参数 function add(a,b){ return a+b; } add(1,2); 2.参数未知 function add(){ if(arguments.length 1){ return arguments[0]; }else if(a 阅读全文