58 個給 Web 開發(fā)人員的 JavaScript 技巧匯總WEB前端開發(fā)社區(qū) 2022-04-21 18:00 專注于為廣大WEB前端學(xué)習(xí)者提供免費的WEB學(xué)習(xí)資料,,WEB學(xué)習(xí)手冊,,WEB免費學(xué)習(xí)視頻,。 公眾號 作為常規(guī)的程序員,,編寫代碼也需要大量的技巧,??梢酝ㄟ^耳目一新,、通易懂,、舒適自然,同時又充滿成就感,。 因此,,整理了一些近三年來,我使用過的 JavaScript 開發(fā)技巧,,希望能讓大家寫出自然出耳目一新,、通俗易懂、舒適的代碼,。 字符串技巧 1,、比較時間 const time1 = "2022-03-02 09:00:00";const time2 = "2022-03-02 09:00:01";const overtime = time1 < time2;// overtime => true 2、眼睛 const ThousandNum = num => num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");const money = ThousandNum(1000000) ;// 錢 => '1,000,000' 3,、生成永久ID const RandomId = len => Math.random().toString(36).substr(3, len);const id = RandomId(10);// id => "xdeguewg1f" 4,、生成隨時HEX顏色值 const RandomColor = () => "#" + Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0");const color = RandomColor();// color => “#2cbf89” 5、生成星級_ const StartScore = rate => "★★★★★☆☆☆☆☆".slice(5 - rate, 10 - rate);const start = StartScore(3);// start => '★★★☆☆' 6,、網(wǎng)址查詢參數(shù) const params = new URLSearchParams(location.search.replace(/\?/ig, "")); // location.search = "?name=test&sex=man"params.has("test"); // trueparams.get("sex"); // “男人” 數(shù)字技能 7,、安排 用 Math.floor() 代替正數(shù),用 Math.ceil() 代替負數(shù) 常量 num1 = ~~ 1.19;常量 num2 = 2.29 | 0;const num3 = 3.09 >> 0;// num1 num2 num3 => 1 2 3 8,、零填充 const FillZero = (num, len) => num.toString().padStart(len, "0");const num = FillZero(1234, 5);// num => "01234" 9,、轉(zhuǎn)數(shù) 僅對null、“”,、false,、數(shù)字字符串有效 const num1 = +null;const num2 = +"";const num3 = +false;const num4 = +"169";// num1 num2 num3 num4 => 0 0 0 169 10、 const timestamp = +new Date("2022-03-22");// 時間戳 => 1647907200000 11,、合理小數(shù) const RoundNum = (num, decimal) => Math.round(num * 10 ** decimal) / 10 ** decimal;const num = RoundNum(1.2345, 2);// num => 1.23 12,、平價 const OddEven = num => !!(num & 1) ? "odd" : "even";const num = OddEven(2);// num => "even" 13,、取地點 const arr = [0, 1, 2, 3];const min = Math.min(...arr);const max = Math.max(...arr);// min max => 0 3 14、生成范圍數(shù) const RandomNum = (min, max) => Math.floor(Math.random() * (max - min + 1)) + min;const num = RandomNum(1, 10); // 5 布爾技能 15,、近距 常量 a = d && 1; // 假的peration,,從左到右判斷,遇到假值時返回假值,,以后不再執(zhí)行,,否則ise 返回最后一個真值const b = d || 1個;// 取真運算,,從左到右判斷,,遇到真值就返回真值,以后不執(zhí)行,,否則返回 最后一個假值const c = !d; // 如果單個表達式轉(zhuǎn)換為 true,,則返回 false,否則返回 true 16,、確定數(shù)據(jù)類型 可確定的類型:undefined、null,、string,、number、boolean,、array,、object、symbol,、date,、regexp、function,、asyncfunction,、arguments、set,、map,、weakset、weak map function DataType(tgt, type) { const dataType = Object.prototype.toString.call(tgt).replace(/\[object (\w+)\]/, "$1").toLowerCase(); return type ? dataType === type : dataType;}DataType("test"); // "string"DataType(20220314); // "number"DataType(true); // "boolean"DataType([], "array"); // trueDataType({}, "array"); // false 17,、檢查數(shù)組是否為空 const arr = [];const flag = Array.isArray(arr) && !arr.length;// flag => true 18,、滿足條件時執(zhí)行 const flagA = true; // Condition Aconst flagB = false; // Condition B(flagA || flagB) && Func(); // Execute when A or B is satisfied(flagA || !flagB) && Func(); // Execute when A is satisfied or B is not satisfiedflagA && flagB && Func(); // Execute when both A and B are satisfiedflagA && !flagB && Func(); // Execute when A is satisfied and B is not satisfied 19、如果非假則執(zhí)行 const flag = false; // undefined,、null,、""、0,、false,、NaN!flag && Func(); 20、數(shù)組不為空時執(zhí)行 const arr = [0, 1, 2];arr.length && Func(); 21、對象不為空時執(zhí)行 const obj = { a: 0, b: 1, c: 2 };Object.keys(obj).length && Func(); 陣列技能 22,、克隆數(shù)組 const _arr = [0, 1, 2];const arr = [..._arr];// arr => [0, 1, 2] 23,、合并數(shù)組 const arr1 = [0, 1, 2];const arr2 = [3, 4, 5];const arr = [...arr1, ...arr2];// arr => [0, 1, 2, 3, 4, 5]; 24、去重數(shù)組 const arr = [...new Set([0, 1, 1, null, null])];// arr => [0, 1, null] 25,、混淆數(shù)組 const arr = [0, 1, 2, 3, 4, 5].slice().sort(() => Math.random() - .5);// arr => [3, 4, 0, 5, 1, 2] 26,、清空數(shù)組 const arr = [0, 1, 2];arr.length = 0;// arr => [] 27、截斷數(shù)組 const arr = [0, 1, 2];arr.length = 2;// arr => [0, 1] 28,、交換數(shù)值 let a = 0;let b = 1;[a, b] = [b, a];// a b => 1 0 29,、過濾空值 空值:undefined,null,””,0,false,NaN const arr = [undefined, null, "", 0, false, NaN, 1, 2].filter(Boolean);// arr => [1, 2] 30、在數(shù)組開頭插入成員 let arr = [1, 2];arr.unshift(0);arr = [0].concat(arr);arr = [0, ...arr];// arr => [0, 1, 2] 31,、在數(shù)組末尾插入元素 let arr = [0, 1]; arr.push(2);arr.concat(2);arr[arr.length] = 2;arr = [...arr, 2];// arr => [0, 1, 2] 32,、計算數(shù)組成員的數(shù)量 const arr = [0, 1, 1, 2, 2, 2];const count = arr.reduce((t, v) => { t[v] = t[v] ? ++t[v] : 1 ; return t;}, {});// count => { 0: 1, 1: 2, 2: 3 } 33、解石天然成份股 const arr = [0, 1, [2, 3, [4, 5]]];const [a, b, [c, d, [e, f]]] = arr;// a b c d e f => 0 1 2 3 4 5 34,、解構(gòu)列表成員 const arr = [0, 1, 2];const { 0: a, 1: b, 2: c } = arr;// a b c => 0 1 2 35,、解構(gòu)組成員默認(rèn)值 const arr = [0, 1, 2];const [a, b, c = 3, d = 4] = arr;// a b c d => 0 1 2 4 36、每日行程成員 const arr = [0, 1, 2, 3, 4, 5];const randomItem = arr[Math.floor(Math.random() * arr.length)];// randomItem => 1 37,、創(chuàng)建指定長度的目錄 const arr = [...new Array(3).keys()];// arr => [0, 1, 2] 38,、創(chuàng)建一個指定長度和變量值的目錄 const arr = new Array(3).fill(0);// arr => [0, 0, 0] 對象技能 39、人像 const _obj = { a: 0, b: 1, c: 2 };const obj = { ..._obj };const obj = JSON.parse(JSON.stringify(_obj));// obj => { a: 0, b: 1, c: 2 } 40,、合并對象 const obj1 = { a: 0, b: 1, c: 2 };const obj2 = { c: 3, d: 4, e: 5 };const obj = { ...obj1, ...obj2 };/ /obj => { a: 0, b: 1, c: 3, d: 4, e: 5 } 41,、對象變量屬性 const flag = false;const obj = { a: 0, b: 1, [flag ? "c" : "d"]: 2};// obj => { a: 0, b: 1, d: 2 } 42、創(chuàng)建一個純空對象 const obj = Object.create(null);Object.prototype.a = 0;// obj => {} 43,、刪除對象無用屬性 常量 obj = { a: 0, b: 1, c: 2 }; const { a, ...rest } = obj;// rest => { b: 1, c: 2 } 解構(gòu)對象屬性444 const obj = { a: 0, b: 1, c: { d: 2, e: 3 } };const { c: { d, e } } = obj;// d e => 2 3 別名45,、解構(gòu)對象屬性 const obj = { a: 0, b: 1, c: 2 };const { a, b: d, c: e } = obj;// a d e => 0 1 2 46、解構(gòu)對象屬性默認(rèn)值 const obj = { a: 0, b: 1, c: 2 };const { a, b = 2, d = 3 } = obj;// a b d => 0 1 3 功能技能 47,、函數(shù)自執(zhí)行 const Func = function() {}(); // 常用(function() {})(); // 常用(function() {}()); // 常用[function() {}()];+ function() {}();- function() {}();~ function() {}();! function() {}();new function() {};new function() {}();void function() {}();typeof function() {}();delete function() {}() ;1,、函數(shù)() {}();1 ^ 函數(shù)() {}();1 > 函數(shù)() {}(); 48、職業(yè)職能 適合運行一些只需要執(zhí)行的初始代碼,。 函數(shù) Func() { console.log("x"); Func = function() { console.log("y"); }} 49,、延遲加載函數(shù) 當(dāng)函數(shù)中的分支比較多時,可以使用多種資源,。 函數(shù) Func() { if (a === b) { console.log("x"); } 其他 { console.log("y"); }}// 替換為函數(shù) Func() { if (a === b) { Func = function() { console.log("x"); } } else { Func = function() { console.log("y"); } } 返回函數(shù)(),;} 50、檢測非空參數(shù) function IsRequired() { throw new&nbs p;Er ror("param is required");}function Func(name = IsRequired()) { console.log("I Love" + name);}Func(); // "參數(shù)是必需的"Func("You"); // “我愛你” 51,、字符串創(chuàng)建函數(shù) const Func = new Function("name", "console.log(\"I Love \" + name)"); 52,、優(yōu)雅地處理錯誤信息 try { Func();} catch (e) { location.href = "https:///search?q=[js]+" + e.message;} 53、優(yōu)雅地處理 Async/Await 參數(shù) function AsyncTo(promise) { return promise.then(data => [null, data]).catch(err => [err]);}const [err, res] = await AsyncTo(Func()); 54,、優(yōu)雅地處理多個函數(shù)返回值 function Func() { return Promise .all ([ fetch("/user"), fetch("/comment") ]);}const [user, comment] = await Func(); DOM技能 55,、顯示所有 DOM 縮略圖 [].forEach.call($$("*"), dom => { dom.style.outline = "1px solid #" + (~~(Math.random() * (1 << 24))),。 toString(16);}); 56、響應(yīng)式頁面 圖片基于設(shè)計圖但需要適應(yīng)多種模型,,元素大小使用rem設(shè)置,。 函數(shù)自動響應(yīng)(寬度 = 750){ 特性目標(biāo) = document.documentElement; target.clientWidth >= 600 ?(target.style.fontSize = "80px") : (target.style.fontSize = target.clientWidth / width * 100 + “像素”),;} 57,、過濾XSS 函數(shù) FilterXss(content) { let elem = document.createElement("div"); elem.innerText = 內(nèi)容;性質(zhì)結(jié)果 = elem.innerHTML,;元素=空,;返回結(jié)果;} 58,、訪問本地存儲 const love = JSON.parse(localStorage.getItem("love"));localStorage.setItem("love", JSON.stringify("I Love You")); 總結(jié) 以上就是我整理整理的58 個 JavaScript 的小技巧,,希望對你有所幫助。 *聲明:本文于整理,,版權(quán)原作者來源信息有誤或破壞所有權(quán)益,,請聯(lián)系我們刪除授權(quán)部分 確定 |
|
來自: 風(fēng)聲之家 > 《JS》