- 数组方法 Array.includes
- 提前退出/提前返回
- 对象字面量 代替switch语句
- 默认参数结构
- 用上Array.some Array.every
1、数组方法Array.includes
1 | function printAnimals(animal) { |
2、提前退出/提前返回
1 | //使用默认参数和解构赋值 |
3、对象字面量代替switch
需求:基于颜色打印水果
1 | function printFruits(color) { |
使用对象字面量
1 | const fruitColor = { |