靈活運用JavaScript開發技巧

JowayYoung發表於2019-05-06

前言

何為技巧,意指表現在文學、工藝、體育等方面的巧妙技能。程式碼作為一門現代高階工藝,推動著人類科學技術的發展,同時猶如文字一樣承託著人類文化的進步。

每寫好一篇文章,都會使用大量的寫作技巧。烘托、渲染、懸念、鋪墊、照應、伏筆、聯想、想象、抑揚結合、點面結合、動靜結合、敘議結合、情景交融、首尾呼應、襯托對比、白描細描、比喻象徵、借古諷今、卒章顯志、承上啟下、開門見山、動靜相襯、虛實相生、實寫虛寫、託物寓意、詠物抒情等,這些應該都是我們從小到大寫文章而接觸到的寫作技巧。

作為程式猿的我們,寫程式碼同樣也需要大量的寫作技巧。一份良好的程式碼能讓人耳目一新,讓人容易理解,讓人舒服自然,同時也讓自己成就感滿滿(哈哈,這個才是重點)。因此,我整理下三年來自己使用到的一些JavaScript開發技巧,希望能讓你寫出耳目一新、容易理解、舒服自然的程式碼。

以下演示全是ES6版本的書寫,在WebpackBabel的加持下就不能好好寫ES6嗎,還寫什麼ES3和ES5呢,更別管那弱智的IE瀏覽器了,IE瀏覽器都快被淘汰了,Microsoft都宣佈放棄使用自研的瀏覽器核心而使用Google開源的Chromium核心了。

目錄

既然寫文章有這麼多的寫作技巧,那麼我也需要對JavaScript開發技巧整理一下,起個易記的名字。

  • String Skill字串技巧
  • Number Skill數值技巧
  • Boolean Skill布林值技巧
  • Array Skill陣列技巧
  • Object Skill物件技巧
  • Function Skill函式技巧
  • DOM SkillDOM技巧

備註

String Skill

時間對比:時間個位數形式需補0

const time1 = "2019-03-31 10:00:00";
const time2 = "2019-05-01 09:00:00";
const overtime = time1 > time2;
// overtime => false
複製程式碼

格式化金錢:帶小數無效

const thousand = num => num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",");
const money = thousand(123456789);
// money => "123,456,789"
複製程式碼

生成隨機ID

const randomId = len => Math.random().toString(36).substr(3, len);
const id = randomId(10);
// id => "jg7zpgiqva"
複製程式碼

生成隨機HEX色值

const randomColor = () => "#" + Math.floor(Math.random() * 0xffffff).toString(16).padEnd(6, "0");
const color = randomColor();
// color => "#2e90e3"
複製程式碼

生成星級評分

const startScore = rate => "★★★★★☆☆☆☆☆".slice(5 - rate, 10 - rate);
const start = startScore(3);
// start => "★★★"
複製程式碼

操作URL查詢引數

const params = new URLSearchParams(location.search); // location.search = "?name=young&sex=male"
params.has("young"); // true
params.get("sex"); // "male"
複製程式碼

Number Skill

取整:代替正數的Math.floor(),代替負數的Math.ceil()

const num1 = ~~ 1.33;
const num2 = 1.33 | 0;
const num3 = 1.33 >> 0;
// num1 num2 num3 => 1 1 1
複製程式碼

補零

const fillZero = (num, len) => num.toString().padStart(len, "0");
const num = fillZero(123, 5);
// num => "00123"
複製程式碼

轉數值:只對null、""、false、數值字串有效

const num1 = +null;
const num2 = +"";
const num3 = +false;
const num4 = +"123";
// num1 num2 num3 num4 => 0 0 0 123
複製程式碼

精確小數

const round = (num, decimal) => Math.round(num * 10 ** decimal) / 10 ** decimal;
const num = round(1.33, 1);
// num => 1.3
複製程式碼

判斷奇偶

const num = 0;
const odd = !!(num & 1);
// odd => false
複製程式碼

取最小最大值

const arr = [0, 1, 2];
const min = Math.min.apply(Math, arr);
const max = Math.max.apply(Math, arr);
// min max => 0 2
複製程式碼

Boolean Skill

短路運算子

const a = d && 1; // 滿足條件賦值:取假運算,從左到右依次判斷,遇到假值返回假值,後面不再執行,否則返回最後一個真值
const b = d || 1; // 預設賦值:取真運算,從左到右依次判斷,遇到真值返回真值,後面不再執行,否則返回最後一個假值
const c = !d; // 取假賦值:單個表示式轉換為true則返回false,否則返回true
複製程式碼

是否為空陣列

const arr = [];
const flag = Array.isArray(arr) && !arr.length;
// flag => true
複製程式碼

是否為空物件

const obj = {};
const flag = Object.prototype.toString.call(obj) && !Object.keys(obj).length;
// flag => true
複製程式碼

滿足條件時執行

const flagA = true; // 條件A
const flagB = false; // 條件B
(flagA || flagB) && Func(); // 滿足A或B時執行
(flagA || !flagB) && Func(); // 滿足A或不滿足B時執行
flagA && flagB && Func(); // 同時滿足A和B時執行
flagA && !flagB && Func(); // 滿足A且不滿足B時執行
複製程式碼

為非假值時執行

const flag = false; // undefined、null、""、0、false、NaN
!flag && Func();
複製程式碼

陣列不為空時執行

const arr = [0, 1, 2];
arr.length && Func();
複製程式碼

物件不為空時執行

const obj = { a: 0, b: 1, c: 2 };
Object.keys(obj).length && Func();
複製程式碼

函式退出代替條件分支退出

if (flag) {
    Func();
    return false;
}
// 換成
if (flag) {
    return Func();
}
複製程式碼

Array Skill

克隆陣列

const _arr = [0, 1, 2];
const arr = [..._arr];
// arr => [0, 1, 2]
複製程式碼

合併陣列

const arr1 = [0, 1, 2];
const arr2 = [3, 4, 5];
const arr = [...arr1, ...arr2];
// arr => [0, 1, 2, 3, 4, 5];
複製程式碼

去重陣列

const arr = [...new Set([0, 1, 1, null, null])];
// arr => [0, 1, null]
複製程式碼

混淆陣列

const arr = [0, 1, 2, 3, 4, 5].slice().sort(() => Math.random() - .5);
// arr => [3, 4, 0, 5, 1, 2]
複製程式碼

交換賦值

let a = 0;
let b = 1;
[a, b] = [b, a];
// a b => 1 0
複製程式碼

過濾空值:undefined、null、""、0、false、NaN

const arr = [undefined, null, "", 0, false, NaN, 0, 1, 2].filter(Boolean);
// arr => [0, 1, 2]
複製程式碼

非同步累計

async function Func(deps) {
    return deps.reduce(async(t, v) => {
        const dep = await t;
        const version = await Todo(v);
        dep[v] = version;
        return dep;
    }, Promise.resolve({}));
}
const result = await Func(); // 需在async包圍下使用
複製程式碼

首部插入元素

let arr = [1, 2]; // 以下方法任選一種
arr.unshift(0);
arr = [0].concat(arr);
arr = [0, ...arr];
// arr => [0, 1, 2]
複製程式碼

尾部插入元素

let arr = [0, 1]; // 以下方法任選一種
arr.push(2);
arr.concat(2);
arr[arr.length] = 2;
arr = [...arr, 2];
// arr => [0, 1, 2]
複製程式碼

統計元素個數

const arr = [0, 1, 1, 2, 2, 2];
const count = arr.reduce((t, c) => {
    t[c] = t[c] ? ++ t[c] : 1;
    return t;
}, {});
// count => { 0: 1, 1: 2, 2: 3 }
複製程式碼

建立指定長度陣列

const arr = [...new Array(3).keys()];
// arr => [0, 1, 2]
複製程式碼

建立指定長度且值相等的陣列

const arr = [...new Array(3).keys()].fill(0);
// arr => [0, 0, 0]
複製程式碼

reduce代替map和filter

const _arr = [0, 1, 2];

// map
const arr = _arr.map(v => v * 2);
const arr = _arr.reduce((t, c) => {
    t.push(c * 2);
    return t;
}, []);
// arr => [0, 2, 4]

// filter
const arr = _arr.filter(v => v > 0);
const arr = _arr.reduce((t, c) => {
    c > 0 && t.push(c);
    return t;
}, []);
// arr => [1, 2]

// map和filter
const arr = _arr.map(v => v * 2).filter(v => v > 2);
const arr = _arr.reduce((t, c) => {
    c = c * 2;
    c > 2 && t.push(c);
    return t;
}, []);
// arr => [4]
複製程式碼

Object Skill

克隆物件

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 }
複製程式碼

合併物件

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 }
複製程式碼

物件字面量:獲取環境變數時必用此方法,用它一直爽,一直用它一直爽

const env = "prod";
const link = {
    dev: "Development Address",
    test: "Testing Address",
    prod: "Production Address"
}[env];
// env => "Production Address"
複製程式碼

建立純空物件

const obj = Object.create(null);
Object.prototype.a = 0;
// obj => {}
複製程式碼

解構巢狀屬性

const obj = { a: 0, b: 1, c: { d: 2, e: 3 } };
const { c: { d, e } } = obj;
// d e => 2 3
複製程式碼

解構物件別名

const obj = { a: 0, b: 1, c: 2 };
const { a, b: d, c: e } = obj;
// a d e => 0 1 2
複製程式碼

刪除無用屬性

const obj = { a: 0, b: 1, c: 2 }; // 只想拿b和c
const { a, ...rest } = obj;
// rest => { b: 1, c: 2 }
複製程式碼

Function Skill

函式自執行

const Func = function() {}(); // 常用

(function() {})(); // 常用
(function() {}()); // 常用
[function() {}()];

+ function() {}();
- function() {}();
~ function() {}();
! function() {}();

new function() {};
new function() {}();
void function() {}();
typeof function() {}();
delete function() {}();

1, function() {}();
1 ^ function() {}();
1 > function() {}();
複製程式碼

隱式返回值:只能用於單語句返回值箭頭函式,如果返回值是物件必須使用()包住

const Func = function(name) {
    return "I Love" + name;
};
// 換成
const Func = name => "I Love" + name;
複製程式碼

一次性函式:適用於執行一些只需執行一次的初始化程式碼

function Func() {
    console.log("x");
    Func = function() {
        console.log("y");
    }
}
複製程式碼

惰性載入函式:函式內判斷分支較多較複雜時可大大節約資源開銷

function Func() {
    if (a !== b) {
        console.log("x");
    } else {
        console.log("y");
    }
}
// 換成
function Func() {
    if (a !== b) {
        Func = function() {
            console.log("x");
        }
    } else {
        Func = function() {
            console.log("y");
        }
    }
    return Func();
}
複製程式碼

檢測非空引數

function IsRequired() {
    throw new Error("param is required");
}
function Func(name = IsRequired()) {
    console.log("I Love" + name);
}
Func(); // "param is required"
Func("雅君妹紙"); // "I Love 雅君妹紙"
複製程式碼

字串建立函式

const Func = new Function("name", "console.log(\"I Love \" + name)");
複製程式碼

優雅處理錯誤資訊

try {
    Func();
} catch (e) {
    location.href = "https://stackoverflow.com/search?q=[js]+" + e.message;
}
複製程式碼

優雅處理Async/Await引數

function AsyncTo(promise) {
    return promise.then(data => [null, data]).catch(err => [err]);
}
const [err, res] = await AsyncTo(Func());
複製程式碼

優雅處理多個函式返回值

async function getAll() {
    return await Promise.all([
        fetch("/user"),
        fetch("/comment")
    ]);
}
const [user, comment] = getAll();
複製程式碼

DOM Skill

顯示全部DOM邊框:除錯頁面元素邊界時使用

[].forEach.call($$("*"), dom => {
	dom.style.outline = "1px solid #" + (~~(Math.random() * (1 << 24))).toString(16);
});
複製程式碼

自適應頁面:頁面基於一張設計圖但需做多款機型自適應,元素尺寸使用rem進行設定

function AutoResponse(width = 750) {
    const target = document.documentElement;
    target.clientWidth >= 600
        ? (target.style.fontSize = "80px")
        : (target.style.fontSize = target.clientWidth / width * 100 + "px");
}
複製程式碼

結語

寫到最後總結得差不多了,後續如果我想起還有哪些JavaScript開發技巧遺漏的,會繼續在這篇文章上補全,同時也希望各位倔友對文章裡的小技巧進行補充或者提出自己的見解。歡迎在下方進行評論或補充喔,喜歡的點個贊收個藏,保證你在開發時用得上。

最後送大家一個鍵盤。。。

(_=>[..."`1234567890-=~~QWERTYUIOP[]\\~ASDFGHJKL;'~~ZXCVBNM,./~"].map(x=>(o+=`/${b='_'.repeat(w=x<y?2:' 667699'[x=["Bs","Tab","Caps","Enter"][p++]||'Shift',p])}\\|`,m+=y+(x+'    ').slice(0,w)+y+y,n+=y+b+y+y,l+=' __'+b)[73]&&(k.push(l,m,n,o),l='',m=n=o=y),m=n=o=y='|',p=l=k=[])&&k.join`
`)()
複製程式碼

相關文章