摘要:
Lodash官方文档 Lodash 通过降低 array、number、objects、string 等等的使用难度从而让 JavaScript 变得更简单。 Lodash 的模块化方法 非常适用于: 遍历 array、object 和 string对值进行操作和检测创建符合功能的函数futil-j 阅读全文
摘要:
1.函数默认参数,调用时最后一个参数不传相应实参也可以执行 function show(a="哈哈",b="你好") { console.log(a,b); } show('啦啦',);//啦啦 你好 function show2({x,y=0}) { console.log(x,y) } show 阅读全文