1. 程式人生 > 程式設計 >20個JS簡寫技巧提升工作效率

20個JS簡寫技巧提升工作效率

目錄
  • 當同時宣告多個變數時,可簡寫成一行
  • 利用解構,可為多個變數同時賦值
  • 巧用三元運算子簡化if else
  • 使用||運算子給變數指定預設值
  • 使用&&運算子簡化if語句
  • 使用解構交換兩個變數的值
  • 適用箭頭函式簡化函式
  • 使用字串模板簡化程式碼
  • 多行字串也可使用字串模板簡化
  • 對於多值匹配,可將所有值放在陣列中,通過陣列方法來簡寫
  • 巧用ES6物件的簡潔語法
  • 使用一元運算子簡化字串轉數字
  • 使用repeat()方法簡化重複一個字串
  • 使用雙星號代替Math.pow()
  • 使用雙波浪線運算子(~~)代替Math.floor()
  • 巧用擴充套件操作符(...)簡化程式碼
    • 簡化數組合並
    • 單層物件的拷貝
    • 尋找陣列中的最大和最小值
  • 使用for in和for of來簡化普通for迴圈
    • 簡化獲取字串中的某個字元
      • 移除物件屬性
        • 使用arr.filter(Boolean)過濾掉陣列成員的值falsey

          前言:

          最近看了一些簡化程式碼的文章,其中有一篇覺得還不錯,但是是英文的,也看了一些中文翻譯,一個是一字一句翻譯太生硬,沒有變成自己的東西,另外就是後面作者有新增沒有及時更新,於是我按照自己的語言翻譯整理成此文,本文特點以言簡意賅為主

          當同時宣告多個變數時,可簡寫成一行

          //Longhand
          let x;
          let y = 20;
           
          //Shorthand
          let x,y = 20;
          
          
          

          利用解構,可為多個變數同時賦值

          //Longhand
          let a,b,c;
          
          a = 5;
          b = 8;
          c = 12;
          
          //Shorthand
          let [a,c] = [5,8,12];
          
          
          

          巧用三元運算子簡化if else

          //Longhand 
          let marks = 26; 
          let result; 
          if (marks >= 30) {
             result = 'Pass'; 
          } else { 
             result = 'Fail'; 
          } 
          
          //Shorthand 
          let result = marks >= 30 ? 'Pass' : 'Fail';
          
          
          

          使用||運算子給變數指定預設值

          本質是利用了||運算子的特點,當前面的表示式的結果轉成布林值為false時,則值為後面表示式的結果

          //Longhand
          let imagePath;
          
          let path = getImagePath();
          
          if (path !== null && path !== undefined && path !== '') {
              imagePath = path;
          } else {
              imagePath = 'default.jpg';
          }
          
          //Shorthand
          let imagePath = getImagePath() || 'default.jpg';
          
          

          使用&&運算子簡化if語句

          例如某個函式在某個條件為真時才呼叫,可簡寫

          //Longhand
          if (isLoggedin) {
              goToHomepage();
           }
          
          //Shorthand
          isLoggedin && goToHomepage();
          
          
          

          使用解構交換兩個變數的值

          let x = 'Hello',y = 55;
          
          //Longhand
          const temp = x;
          x = y;
          y = temp;
          
          //Shorthand
          [x,y] = [y,x];
          
          

          適用箭頭函式簡化函式

          //Longhand
          function add(num1,num2) {
            return num1 + num2;
          }
          
          //Shorthand
          const add = (num1,num2) => num1 + num2;
          
          
          
          http://www.cppcns.com

          需要注意箭頭函式和普通函式的區別

          使用字串模板簡化程式碼

          使用模板字串代替原始的字串拼接

          //Longhand
          console.log('You got a missed call from ' + number + ' at ' + time);
          
          //Shorthand
          console.log(`You got a missed call from ${number} at ${time}`);
          
          

          多行字串也可使用字串模板簡化

          //Longhand
          console.log(',often abbrevihttp://www.cppcns.comated as JS,is a\n' + 
                      'programming language that conforms to the \n' + 
                      'ECMAScript specification. Script is high-level,\n' + 
                      'often just-in-time compiled,and multi-paradigm.'
                      );
          
          
          //Shorthand
          console.log(`JavaScript,often abbreviated as JS,is a
                      programming language that conforms to the
                      ECMAScript specification. JavaScript is high-level,often zEUiMjust-in-time compiled,and multi-paradigm.`
                      );
          
          
          

          對於多值匹配,可將所有值放在陣列中,通過陣列方法來簡寫

          //Longhand
          if (value === 1 || value === 'one' || value === 2 || value === 'two') {
            // Execute some code
          }
          
          // Shorthand 1
          if ([1,'one',2,'two'].indexOf(value) >= 0) {
             // Execute some code
          }
          
          // Shorthand 2
          if ([1,'two'].includes(value)) { 
              // Execute some code 
          }
          
          

          巧用ES6物件的簡潔語法

          例如:當屬性名和變數名相同時,可直接縮寫為一個

          let firstname = 'Amitav';
          let lastname = 'Mishra';
          
          //Longhand
          let obj = {firstname: firstname,lastname: lastname};
          
          //Shorthand
          let obj = {firstname,lastname};
          
          
          

          使用一元運算子簡化字串轉數字

          //Longhand
          let total = parseInt('453');
          let average = parseFloat('42.6');
          
          //Shorthand
          let total = +'453';
          let average = +'42.6';
          
          
          

          使用repeat()方法簡化重複一個字串

          //Longhand
          let str = '';
          for(let i = 0; i < 5; i ++) {
            str += 'Hello ';
          }
          console.log(str); // Hello Hello Hello Hello Hello
          
          // Shorthand
          'Hello '.repeat(5);
          
          // 想跟你說100聲抱歉!
          'sorry\n'.repeat(100);
          
          
          

          使用雙星號代替Math.pow()

          //Longhand
          const power = Math.pow(4,3); // 64
          
          // Shorthand
          const power = 4**3; // 64
          
          
          

          使用雙波浪線運算子(~~)代替Math.floor()

          //Longhand
          const floor = Math.floor(6.8); // 6
          
          // Shorthand
          const floor = ~~6.8; // 6
          
          
          

          需要注意,~~僅適用於小於2147483647的數字

          巧用擴充套件操作符(...)簡化程式碼

          簡化數組合並

          let arr1 = [20,30];
          
          //Longhand
          let arr2 = arr1.concat([60,80]); // [20,30,60,80]
          
          //Shorthand
          let arr2 = [...arr1,80]; // [20,80]
          
          
          

          單層物件的拷貝

          let obj = {x: 20,y: {z: 30}};
          
          //Longhand
          const makeDeepClone = (obj) => {
            let newObject = {};
            Object.keys(obj).map(key => {
                if(typeof obj[key] === 'object'){
                    newObject[key] = makeDeepClone(obj[key]);
                } else {
                    newObject[key] = obj[key];
                }
          });
          
          return newObject;
          }
          
          const cloneObj = makeDeepClone(obj);
          
          
          
          //Shorthand
          const cloneObj = JSON.parse(JSON.stringify(obj));
          
          //Shorthand for single level object
          let obj = {x: 20,y: 'hello'};
          const cloneObj = {...obj};
          
          

          尋找陣列中的最大和最小值

          // Shorthand
          const arr = [2,15,4];
          Math.max(...arr); // 15
          Math.min(...arr); // 2
          
          
          

          使用for in和for of來簡化普通for迴圈

          let arr = [10,20,40];
          
          //Longhand
          for (let i = 0; i < arr.length; i++) {
            console.log(arr[i]);
          }
          
          //Shorthand
          //for of loop
          for (const val of arr) {
            console.log(val);
          }
          
          //for in loop
          for (const index in arr) {
            console.log(arr[index]);
          }
          
          
          

          簡化獲取字串中的某個字元

          let str = 'jscurious.com';
          
          //Longhand
          str.charAt(2); // c
          
          //Shorthand
          str[2]; // c
          
          
          

          移除物件屬性

          let obj = {x: 45,y: 72,z: 68,p: 98};
          
          // Longhand
          delete obj.x;
          delete obj.p;
          console.log(obj); // {y: 72,z: 68}
          
          // Shorthand
          let {x,p,...newObj} = obj;
          console.log(newObj); // {y: 72,z: 68}
          
          
          

          使用arr.filter(Boolean)過濾掉陣列成員的值falsey

          let arr = [12,null,'xyz',-25,NaN,'',undefined,0.5,false];
          
          //Longhand
          let filterArray = arr.filter(function(value) {
              if(value) return value;
          });
          // filterArray = [12,"xyz",0.5]
          
          // Shorthand
          let filterArray = arr.filter(Boolean);
          // filterArray = [12,0.5]
          

          到此這篇關於20個JS簡寫技巧提升工作效率的文章就介紹到這了,更多相關JS簡寫技巧內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!