就像全部其餘編程語言同樣,JavaScript也有許多技巧能夠完成簡單和困難的任務。 一些技巧廣爲人知,而其餘技巧則足以讓你大吃一驚。 讓咱們來看看你今天就能夠開始使用的七個JavaScript技巧吧!javascript
原文連接:davidwalsh.name/javascript-…java
數組去重可能比您想象的更容易:git
var j = [...new Set([1, 2, 3, 4, 4])]
>> [1, 2, 3, 4]
複製代碼
很簡單有木有!github
是否須要從數組中過濾出falsy值(0
,undefined
,null
,false
等)? 你可能不知道還有這個技巧:正則表達式
let res = [1,2,3,4,0,undefined,null,false,''].filter(Boolean);
>> 1,2,3,4
複製代碼
您可使用{ }
建立一個看似空的對象,但該對象仍然具備__proto__
和一般的hasOwnProperty
以及其餘對象方法。 可是,有一種方法能夠建立一個純粹的「字典」對象:編程
let dict = Object.create(null);
// dict.__proto__ === "undefined"
// No object properties exist until you add them
複製代碼
這種方式建立的對象就很純粹,沒有任何屬性和對象,很是乾淨。api
在JavaScript中合併多個對象的需求已經存在,尤爲是當咱們開始使用選項建立類和小部件時:數組
const person = { name: 'David Walsh', gender: 'Male' };
const tools = { computer: 'Mac', editor: 'Atom' };
const attributes = { handsomeness: 'Extreme', hair: 'Brown', eyes: 'Blue' };
const summary = {...person, ...tools, ...attributes};
/* Object { "computer": "Mac", "editor": "Atom", "eyes": "Blue", "gender": "Male", "hair": "Brown", "handsomeness": "Extreme", "name": "David Walsh", } */
複製代碼
這三個點(...)
使任務變得更加容易!app
可以爲函數參數設置默認值是JavaScript的一個很棒的補充,可是請查看這個技巧,要求爲給定的參數傳遞值:編程語言
const isRequired = () => { throw new Error('param is required'); };
const hello = (name = isRequired()) => { console.log(`hello ${name}`) };
// This will throw an error because no name is provided
hello();
// This will also throw an error
hello(undefined);
// These are good!
hello(null);
hello('David');
複製代碼
解構是JavaScript的一個很是受歡迎的補充,但有時咱們更喜歡用其餘名稱來引用這些屬性,因此咱們能夠利用別名:
const obj = { x: 1 };
// Grabs obj.x as { x }
const { x } = obj;
// Grabs obj.x as { otherName }
const { x: otherName } = obj;
複製代碼
有助於避免與現有變量的命名衝突!
獲取url裏面的參數值或者追加查詢字符串,在這以前,咱們通常經過正則表達式來獲取查詢字符串值,然而如今有一個新的api,具體詳情能夠查看這裏,可讓咱們以很簡單的方式去處理url。
好比如今咱們有這樣一個url,"?post=1234&action=edit",咱們能夠利用下面的技巧來處理這個url。
// Assuming "?post=1234&action=edit"
var urlParams = new URLSearchParams(window.location.search);
console.log(urlParams.has('post')); // true
console.log(urlParams.get('action')); // "edit"
console.log(urlParams.getAll('action')); // ["edit"]
console.log(urlParams.toString()); // "?post=1234&action=edit"
console.log(urlParams.append('active', '1')); // "?post=1234&action=edit&active=1"
複製代碼
比咱們過去用的容易多了!
多年來JavaScript已經發生了很大的變化,可是我最喜歡的JavaScript部分是咱們所看到的語言改進的速度。 儘管JavaScript的動態不斷變化,咱們仍然須要採用一些不錯的技巧; 將這些技巧保存在工具箱中,以便在須要時使用!
那你最喜歡的JavaScript技巧是什麼?
若是以爲文章對你有些許幫助,歡迎在個人GitHub博客點贊和關注,感激涕零!