Array.includes

1.多重判断时使用 Array.includes

  1. function test(fruit) {
  2. if (fruit == 'apple' || fruit == 'strawberry') {
  3. console.log('red');
  4. }
  5. }
  6. 第一眼,上面这个例子看起来没问题。如果我们有更多名字叫 cherry cranberries 的红色水果呢?
  7. 我们准备用更多的 || 来拓展条件语句吗?
  8. 我们可以用 Array.includes (Array.includes)重写条件语句。
  9. function test(fruit) {
  10. const redFruits = ['apple', 'strawberry', 'cherry', 'cranberries'];
  11. if (redFruits.includes(fruit)) {
  12. console.log('red');
  13. }
  14. }
  15. 我们把红色的水果(red fruits)这一判断条件提取到一个数组。这样一来,代码看起来更整洁。

2.更少的嵌套,尽早 return

  1. 如果没有传入参数 fruit,抛出错误
  2. 接受 quantity 参数,并且在 quantity 大于 10 时打印出来
  3. function test(fruit, quantity) {
  4. const redFruits = ['apple', 'strawberry', 'cherry', 'cranberries'];
  5. // 条件 1: fruit 必须有值
  6. if (fruit) {
  7. // 条件 2: 必须是red的
  8. if (redFruits.includes(fruit)) {
  9. console.log('red');
  10. // 条件 3: quantity大于10
  11. if (quantity > 10) {
  12. console.log('big quantity');
  13. }
  14. }
  15. } else {
  16. throw new Error('No fruit!');
  17. }
  18. }
  19. // 测试结果
  20. test(null); // error: No fruits
  21. test('apple'); // print: red
  22. test('apple', 20); // print: red, big quantity
  23. 在上面的代码, 我们有:
  24. 1 if/else 语句筛选出无效的语句
  25. 3if嵌套语句 (条件 1, 2 & 3)
  26. 我个人遵循的规则一般是在发现无效条件时,尽早Return
  27. /_ 当发现无效语句时,尽早Return _/
  28. function test(fruit, quantity) {
  29. const redFruits = ['apple', 'strawberry', 'cherry', 'cranberries'];
  30. // 条件 1: 尽早抛出错误
  31. if (!fruit) throw new Error('No fruit!');
  32. // 条件 2: 必须是红色的
  33. if (redFruits.includes(fruit)) {
  34. console.log('red');
  35. // 条件 3: 必须是大质量的
  36. if (quantity > 10) {
  37. console.log('big quantity');
  38. }
  39. }
  40. }
  41. 我们可以通过 倒置判断条件 & 尽早return 进一步减少if嵌套。看下面我们是怎么处理判断 条件2 的:
  42. /_ 当发现无效语句时,尽早Return _/
  43. function test(fruit, quantity) {
  44. const redFruits = ['apple', 'strawberry', 'cherry', 'cranberries'];
  45. // 条件 1: 尽早抛出错误
  46. if (!fruit) throw new Error('No fruit!');
  47. // 条件 2: 当水果不是红色时停止继续执行
  48. if (!redFruits.includes(fruit)) return;
  49. console.log('red');
  50. // 条件 3: 必须是大质量的
  51. if (quantity > 10) {
  52. console.log('big quantity');
  53. }
  54. }
  55. 通过倒置判断条件2,我们的代码避免了嵌套语句。这个技巧在我们需要进行很长的逻辑判断时
  56. 是非常有用的,特别是我们希望能够在条件不满足时能够停止下来进行处理。

3.使用默认参数和解构

  1. 我猜下面的代码你可能会熟悉,在JavaScript中我们总是需要检查 null / undefined的值和指定默认值:
  2. function test(fruit, quantity) {
  3. if (!fruit) return;
  4. // 如果 quantity 参数没有传入,设置默认值为 1
  5. const q = quantity || 1;
  6. console.log(`We have ${q} ${fruit}!`);
  7. }
  8. //test results
  9. test('banana'); // We have 1 banana!
  10. test('apple', 2); // We have 2 apple!
  11. 实际上,我们可以通过声明 默认函数参数 来消除变量 q
  12. function test(fruit, quantity = 1) {
  13. // 如果 quantity 参数没有传入,设置默认值为 1
  14. if (!fruit) return;
  15. console.log(`We have ${quantity} ${fruit}!`);
  16. }
  17. //test results
  18. test('banana'); // We have 1 banana!
  19. test('apple', 2); // We have 2 apple!
  20. 这更加直观,不是吗?注意,每个声明都有自己的默认参数.
  21. 例如,我们也能给fruit分配默认值:function test(fruit = 'unknown', quantity = 1)。
  22. 如果fruit是一个object会怎么样?我们能分配一个默认参数吗?
  23. function test(fruit) {
  24. // 当值存在时打印 fruit 的值
  25. if (fruit && fruit.name) {
  26. console.log (fruit.name);
  27. } else {
  28. console.log('unknown');
  29. }
  30. }
  31. //test results
  32. test(undefined); // unknown
  33. test({ }); // unknown
  34. test({ name: 'apple', color: 'red' }); // apple
  35. 看上面这个例子,我们想打印 fruit 对象中可能存在的 name 属性。否则我们将打印unknown。我们可以通过默认参数以及解构从而避免判断条件 fruit && fruit.name
  36. // 解构 - 仅仅获取 name 属性
  37. // 为其赋默认值为空对象
  38. function test({name} = {}) {
  39. console.log (name || 'unknown');
  40. }
  41. // test results
  42. test(undefined); // unknown
  43. test({ }); // unknown
  44. test({ name: 'apple', color: 'red' }); // apple
  45. 由于我们只需要 name 属性,我们可以用 {name} 解构出参数,然后我们就能使用变量 name 代替 fruit.name
  46. 我们也需要声明空对象 {} 作为默认值。如果我们不这么做,当执行 test(undefined) 时,你将得到一个无法对 undefined null 解构的的错误。因为在 undefined 中没有 name 属性。
  47. 如果你不介意使用第三方库,这有一些方式减少null的检查:
  48. 使用 Lodash get函数
  49. 使用Facebook开源的idx库(with Babeljs)
  50. 这是一个使用Lodash的例子:
  51. function test(fruit) {
  52. // 获取属性名,如果属性名不可用,赋默认值为 unknown
  53. console.log(__.get(fruit, 'name', 'unknown');
  54. }
  55. // test results
  56. test(undefined); // unknown
  57. test({ }); // unknown
  58. test({ name: 'apple', color: 'red' }); // apple
  59. 你可以在jsbin运行demo代码。除此之外,如果你是函数式编程的粉丝,你可能选择使用 Lodash fpLodash的函数式版本(方法变更为get或者getOr)。

4.倾向于遍历对象而不是 Switch 语句

  1. function test(color) {
  2. // 使用条件语句来寻找对应颜色的水果
  3. switch (color) {
  4. case 'red':
  5. return ['apple', 'strawberry'];
  6. case 'yellow':
  7. return ['banana', 'pineapple'];
  8. case 'purple':
  9. return ['grape', 'plum'];
  10. default:
  11. return [];
  12. }
  13. }
  14. // test results
  15. test(null); // []
  16. test('yellow'); // ['banana', 'pineapple']
  17. 上面的代码看起来没有错误,但是我找到了一些累赘。用对象遍历实现相同的结果,语法看起来更简洁:
  18. const fruitColor = {
  19. red: ['apple', 'strawberry'],
  20. yellow: ['banana', 'pineapple'],
  21. purple: ['grape', 'plum']
  22. };
  23. function test(color) {
  24. return fruitColor[color] || [];
  25. }
  26. 或者你也可以使用 Map实现相同的结果:
  27. const fruitColor = new Map()
  28. .set('red', ['apple', 'strawberry'])
  29. .set('yellow', ['banana', 'pineapple'])
  30. .set('purple', ['grape', 'plum']);
  31. function test(color) {
  32. return fruitColor.get(color) || [];
  33. }

TL;DR; 重构语法

  1. const fruits = [
  2. { name: 'apple', color: 'red' },
  3. { name: 'strawberry', color: 'red' },
  4. { name: 'banana', color: 'yellow' },
  5. { name: 'pineapple', color: 'yellow' },
  6. { name: 'grape', color: 'purple' },
  7. { name: 'plum', color: 'purple' }
  8. ];
  9. function test(color) {
  10. return fruits.filter(f => f.color == color);
  11. }

5.对 所有/部分 判断使用 Array.every & Array.some

  1. 检查是否所有水果都是红色:
  2. const fruits = [
  3. { name: 'apple', color: 'red' },
  4. { name: 'banana', color: 'yellow' },
  5. { name: 'grape', color: 'purple' }
  6. ];
  7. function test() {
  8. let isAllRed = true;
  9. // 条件:所有水果都是红色
  10. for (let f of fruits) {
  11. if (!isAllRed) break;
  12. isAllRed = (f.color == 'red');
  13. }
  14. console.log(isAllRed); // false
  15. }
  16. 代码那么长!我们可以通过 Array.every减少代码行数:
  17. const fruits = [
  18. { name: 'apple', color: 'red' },
  19. { name: 'banana', color: 'yellow' },
  20. { name: 'grape', color: 'purple' }
  21. ];
  22. function test() {
  23. const isAllRed = fruits.every(f => f.color == 'red');
  24. console.log(isAllRed); // false
  25. }
  26. 如果我们想测试是否存在红色的水果,我们可以使用 Array.some 一行代码实现。
  27. const fruits = [
  28. { name: 'apple', color: 'red' },
  29. { name: 'banana', color: 'yellow' },
  30. { name: 'grape', color: 'purple' }
  31. ];
  32. function test() {
  33. // 条件:任何一个水果是红色
  34. const isAnyRed = fruits.some(f => f.color == 'red');
  35. console.log(isAnyRed); // true
  36. }