摘要: 在根目录下新建 .prettierrc文件 内容如下 { "semi": false, "singleQuote": true, "printWidth": 200 } 阅读全文
posted @ 2021-03-17 18:21 蒙靓仔呀 阅读(2450) 评论(0) 推荐(0)
摘要: 1、语法 arr.reduce(callback,[initialValue]) reduce 为数组中的每一个元素依次执行回调函数,不包括数组中被删除或从未被赋值的元素,接受四个参数:初始值(或者上一次回调函数的返回值),当前元素值,当前索引,调用 reduce 的数组。 callback (执行 阅读全文
posted @ 2021-03-17 11:19 蒙靓仔呀 阅读(373) 评论(0) 推荐(0)