1. 带有多个条件的 if 语句
      把多个值放在一个数组中,然后调用数组的 includes 方法。
      1. //longhand
      2. if (x === 'abc' || x === 'def' || x === 'ghi' || x ==='jkl') {
      3. //logic
      4. }
      5. //shorthand
      6. if (['abc', 'def', 'ghi', 'jkl'].includes(x)) {
      7. //logic
      8. }
    2. 简化 if true…else
      对于不包含大逻辑的 if-else 条件,可以使用下面的快捷写法。我们可以简单地使用三元运算符来实现这种简化。
      1. // Longhand
      2. let test: boolean;
      3. if (x > 100) {
      4. test = true;
      5. } else {
      6. test = false;
      7. }
      8. // Shorthand
      9. let test = (x > 10) ? true : false;
      10. //or we can use directly
      11. let test = x > 10;
      12. console.log(test);
      如果有嵌套的条件,可以这么做。
      1. let x = 300,
      2. test2 = (x > 100) ? 'greater 100' : (x < 50) ? 'less 50' : 'between 50 and 100';
      3. console.log(test2); // "greater than 100"
    3. 声明变量
      当我们想要声明两个具有相同的值或相同类型的变量时,可以使用这种简写。
      1. //Longhand
      2. let test1;
      3. let test2 = 1;
      4. //Shorthand
      5. let test1, test2 = 1;
    4. null、undefined 和空值检查
      当我们创建了新变量,有时候想要检查引用的变量是不是为非 null 或 undefined。JavaScript 确实有一个很好的快捷方式来实现这种检查。
      1. // Longhand
      2. if (test1 !== null || test1 !== undefined || test1 !== '') {
      3. let test2 = test1;
      4. }
      5. // Shorthand
      6. let test2 = test1 || '';
    5. null 检查和默认赋值
      1. let test1 = null,
      2. test2 = test1 || '';
      3. console.log("null check", test2); // output will be ""
    6. undefined 检查和默认赋值
      1. let test1 = undefined,
      2. test2 = test1 || '';
      3. console.log("undefined check", test2); // output will be ""
      一般值检查
      1. let test1 = 'test',
      2. test2 = test1 || '';
      3. console.log(test2); // output: 'test'
      另外,对于上述的 4、5、6 点,都可以使用?? 操作符。
      如果左边值为 null 或 undefined,就返回右边的值。默认情况下,它将返回左边的值。
      1. const test= null ?? 'default';
      2. console.log(test);
      3. // expected output: "default"
      4. const test1 = 0 ?? 2;
      5. console.log(test1);
      6. // expected output: 0
    7. 给多个变量赋值
      当我们想给多个不同的变量赋值时,这种技巧非常有用。
      1. //Longhand
      2. let test1, test2, test3;
      3. test1 = 1;
      4. test2 = 2;
      5. test3 = 3;
      6. //Shorthand
      7. let [test1, test2, test3] = [1, 2, 3];
    8. 简便的赋值操作符
      在编程过程中,我们要处理大量的算术运算符。这是 JavaScript 变量赋值操作符的有用技巧之一。
      1. // Longhand
      2. test1 = test1 + 1;
      3. test2 = test2 - 1;
      4. test3 = test3 * 20;
      5. // Shorthand
      6. test1++;
      7. test2--;
      8. test3 *= 20;
    9. if 判断值是否存在
      这是我们都在使用的一种常用的简便技巧,在这里仍然值得再提一下。
      1. // Longhand
      2. if (test1 === true) or if (test1 !== "") or if (test1 !== null)
      3. // Shorthand //it will check empty string,null and undefined too
      4. if (test1)
      注意:如果 test1 有值,将执行 if 之后的逻辑,这个操作符主要用于 null 或 undefinded 检查。
      10. 用于多个条件判断的 && 操作符
      如果只在变量为 true 时才调用函数,可以使用 && 操作符。
      1. //Longhand
      2. if (test1) {
      3. callMethod();
      4. }
      5. //Shorthand
      6. test1 && callMethod();
    10. foreach 循环
      这是一种常见的循环简化技巧。
      1. // Longhand
      2. for (var i = 0; i < testData.length; i++)
      3. // Shorthand
      4. for (let i in testData) or for (let i of testData)
      遍历数组的每一个变量。
      1. function testData(element, index, array) {
      2. console.log('test[' + index + '] = ' + element);
      3. }
      4. [11, 24, 32].forEach(testData);
      5. // logs: test[0] = 11, test[1] = 24, test[2] = 32
    11. 比较后返回
      我们也可以在 return 语句中使用比较,它可以将 5 行代码减少到 1 行。
      1. // Longhand
      2. let test;
      3. function checkReturn() {
      4. if (!(test === undefined)) {
      5. return test;
      6. } else {
      7. return callMe('test');
      8. }
      9. }
      10. var data = checkReturn();
      11. console.log(data); //output test
      12. function callMe(val) {
      13. console.log(val);
      14. }
      15. // Shorthand
      16. function checkReturn() {
      17. return test || callMe('test');
      18. }
    12. 箭头函数
      1. //Longhand
      2. function add(a, b) {
      3. return a + b;
      4. }
      5. //Shorthand
      6. const add = (a, b) => a + b;
      更多例子:
      1. function callMe(name) {
      2. console.log('Hello', name);
      3. }
      4. callMe = name => console.log('Hello', name);
    13. 简短的函数调用
      我们可以使用三元操作符来实现多个函数调用。
      1. // Longhand
      2. function test1() {
      3. console.log('test1');
      4. };
      5. function test2() {
      6. console.log('test2');
      7. };
      8. var test3 = 1;
      9. if (test3 == 1) {
      10. test1();
      11. } else {
      12. test2();
      13. }
      14. // Shorthand
      15. (test3 === 1? test1:test2)();
    14. switch 简化
      我们可以将条件保存在键值对象中,并根据条件来调用它们。
      1. // Longhand
      2. switch (data) {
      3. case 1:
      4. test1();
      5. break;
      6. case 2:
      7. test2();
      8. break;
      9. case 3:
      10. test();
      11. break;
      12. // And so on...
      13. }
      14. // Shorthand
      15. var data = {
      16. 1: test1,
      17. 2: test2,
      18. 3: test
      19. };
      20. data[something] && data[something]();
    15. 隐式返回
      通过使用箭头函数,我们可以直接返回值,不需要 return 语句。
      1. //longhand
      2. function calculate(diameter) {
      3. return Math.PI * diameter
      4. }
      5. //shorthand
      6. calculate = diameter => (
      7. Math.PI * diameter;
      8. )
    16. 指数表示法
      1. // Longhand
      2. for (var i = 0; i < 10000; i++) { ... }
      3. // Shorthand
      4. for (var i = 0; i < 1e4; i++) {
    17. 默认参数值
      1. //Longhand
      2. function add(test1, test2) {
      3. if (test1 === undefined)
      4. test1 = 1;
      5. if (test2 === undefined)
      6. test2 = 2;
      7. return test1 + test2;
      8. }
      9. //shorthand
      10. add = (test1 = 1, test2 = 2) => (test1 + test2);
      11. add() //output: 3
    18. 延展操作符简化
      1. //longhand
      2. // joining arrays using concat
      3. const data = [1, 2, 3];
      4. const test = [4 ,5 , 6].concat(data);
      5. //shorthand
      6. // joining arrays
      7. const data = [1, 2, 3];
      8. const test = [4 ,5 , 6, ...data];
      9. console.log(test); // [ 4, 5, 6, 1, 2, 3]
      我们也可以使用延展操作符进行克隆。
      1. //longhand
      2. // cloning arrays
      3. const test1 = [1, 2, 3];
      4. const test2 = test1.slice()
      5. //shorthand
      6. // cloning arrays
      7. const test1 = [1, 2, 3];
      8. const test2 = [...test1];
    19. 模板字面量
      如果你厌倦了使用 + 将多个变量连接成一个字符串,那么这个简化技巧将让你不再头痛。
      1. //longhand
      2. const welcome = 'Hi ' + test1 + ' ' + test2 + '.'
      3. //shorthand
      4. const welcome = `Hi ${test1} ${test2}`;
    20. 跨行字符串
      当我们在代码中处理跨行字符串时,可以这样做。
      1. //longhand
      2. const data = 'abc abc abc abc abc abc\n\t'
      3. + 'test test,test test test test\n\t'
      4. //shorthand
      5. const data = `abc abc abc abc abc abc
      6. test test,test test test test`
    21. 对象属性赋值
      1. let test1 = 'a';
      2. let test2 = 'b';
      3. //Longhand
      4. let obj = {test1: test1, test2: test2};
      5. //Shorthand
      6. let obj = {test1, test2};
    22. 将字符串转成数字
      1. //Longhand
      2. let test1 = parseInt('123');
      3. let test2 = parseFloat('12.3');
      4. //Shorthand
      5. let test1 = +'123';
      6. let test2 = +'12.3';
    23. 解构赋值
      1. //longhand
      2. const test1 = this.data.test1;
      3. const test2 = this.data.test2;
      4. const test2 = this.data.test3;
      5. //shorthand
      6. const { test1, test2, test3 } = this.data;
    24. 数组 find 简化
      当我们有一个对象数组,并想根据对象属性找到特定对象,find 方法会非常有用。
      1. const data = [{
      2. type: 'test1',
      3. name: 'abc'
      4. },
      5. {
      6. type: 'test2',
      7. name: 'cde'
      8. },
      9. {
      10. type: 'test1',
      11. name: 'fgh'
      12. },
      13. ]
      14. function findtest1(name) {
      15. for (let i = 0; i < data.length; ++i) {
      16. if (data[i].type === 'test1' && data[i].name === name) {
      17. return data[i];
      18. }
      19. }
      20. }
      21. //Shorthand
      22. filteredData = data.find(data => data.type === 'test1' && data.name === 'fgh');
      23. console.log(filteredData); // { type: 'test1', name: 'fgh' }
    25. 条件查找简化
      如果我们要基于不同的类型调用不同的方法,可以使用多个 else if 语句或 switch,但有没有比这更好的简化技巧呢?
      1. // Longhand
      2. if (type === 'test1') {
      3. test1();
      4. }
      5. else if (type === 'test2') {
      6. test2();
      7. }
      8. else if (type === 'test3') {
      9. test3();
      10. }
      11. else if (type === 'test4') {
      12. test4();
      13. } else {
      14. throw new Error('Invalid value ' + type);
      15. }
      16. // Shorthand
      17. var types = {
      18. test1: test1,
      19. test2: test2,
      20. test3: test3,
      21. test4: test4
      22. };
      23. var func = types[type];
      24. (!func) && throw new Error('Invalid value ' + type); func();
    26. indexOf 的按位操作简化
      在查找数组的某个值时,我们可以使用 indexOf() 方法。但有一种更好的方法,让我们来看一下这个例子。
      1. //longhand
      2. if(arr.indexOf(item) > -1) { // item found
      3. }
      4. if(arr.indexOf(item) === -1) { // item not found
      5. }
      6. //shorthand
      7. if(~arr.indexOf(item)) { // item found
      8. }
      9. if(!~arr.indexOf(item)) { // item not found
      10. }
      按位 (~) 运算符将返回 true(-1 除外),反向操作只需要!~。另外,也可以使用 include() 函数。
      1. if (arr.includes(item)) {
      2. // true if the item found
      3. }
    27. Object.entries()
      这个方法可以将对象转换为对象数组。
      1. const data = { test1: 'abc', test2: 'cde', test3: 'efg' };
      2. const arr = Object.entries(data);
      3. console.log(arr);
      4. /** Output:
      5. [ [ 'test1', 'abc' ],
      6. [ 'test2', 'cde' ],
      7. [ 'test3', 'efg' ]
      8. ]
      9. **/
    28. Object.values()
      这也是 ES8 中引入的一个新特性,它的功能类似于 Object.entries(),只是没有键。
      1. const data = { test1: 'abc', test2: 'cde' };
      2. const arr = Object.values(data);
      3. console.log(arr);
      4. /** Output:
      5. [ 'abc', 'cde']
      6. **/
    29. 双重按位操作
      1. // Longhand
      2. Math.floor(1.9) === 1 // true
      3. // Shorthand
      4. ~~1.9 === 1 // true
    30. 重复字符串多次
      为了重复操作相同的字符,我们可以使用 for 循环,但其实还有一种简便的方法。
      1. //longhand
      2. let test = '';
      3. for(let i = 0; i < 5; i ++) {
      4. test += 'test ';
      5. }
      6. console.log(str); // test test test test test
      7. //shorthand
      8. 'test '.repeat(5);
    31. 查找数组的最大值和最小值
      1. const arr = [1, 2, 3];
      2. Math.max(…arr); // 3
      3. Math.min(…arr); // 1
    32. 获取字符串的字符
      1. let str = 'abc';
      2. //Longhand
      3. str.charAt(2); // c
      4. //Shorthand
      5. str[2]; // c
    33. 指数幂简化
      1. //longhand
      2. Math.pow(2,3); // 8
      3. //shorthand
      4. 2**3 // 8

    原文链接:
    https://javascript.plainenglish.io/34-javascript-optimization-techniques-to-know-in-2021-d561afdf73c3