8個有用的JS技巧
這些技巧可能大家大部分都用過了,如果用過就當作加深點映像,如果沒有遇到過,就當作學會了幾個技巧。
1. 確保陣列值
使用 grid ,需要重新建立原始資料,並且每行的列長度可能不匹配, 為了確保不匹配行之間的長度相等,可以使用Array.fill方法。
let array = Array(5).fill(''); console.log(array); // outputs (5) ["", "", "", "", ""]
2. 獲取陣列唯一值
ES6 提供了從陣列中提取惟一值的兩種非常簡潔的方法。不幸的是,它們不能很好地處理非基本型別的陣列。在本文中,主要關注基本資料型別。
const cars = [ 'Mazda', 'Ford', 'Renault', 'Opel', 'Mazda' ] const uniqueWithArrayFrom = Array.from(new Set(cars)); console.log(uniqueWithArrayFrom); // outputs ["Mazda", "Ford", "Renault", "Opel"] const uniqueWithSpreadOperator = [...new Set(cars)]; console.log(uniqueWithSpreadOperator);// outputs ["Mazda", "Ford", "Renault", "Opel"]
3.使用展開運算子合並物件和物件陣列
物件合併是很常見的事情,我們可以使用新的ES6特性來更好,更簡潔的處理合並的過程。
// merging objects const product = { name: 'Milk', packaging: 'Plastic', price: '5$' } const manufacturer = { name: 'Company Name', address: 'The Company Address' } const productManufacturer = { ...product, ...manufacturer }; console.log(productManufacturer); // outputs { name: "Company Name", packaging: "Plastic", price: "5$", address: "The Company Address" } // merging an array of objects into one const cities = [ { name: 'Paris', visited: 'no' }, { name: 'Lyon', visited: 'no' }, { name: 'Marseille', visited: 'yes' }, { name: 'Rome', visited: 'yes' }, { name: 'Milan', visited: 'no' }, { name: 'Palermo', visited: 'yes' }, { name: 'Genoa', visited: 'yes' }, { name: 'Berlin', visited: 'no' }, { name: 'Hamburg', visited: 'yes' }, { name: 'New York', visited: 'yes' } ]; const result = cities.reduce((accumulator, item) => { return { ...accumulator, [item.name]: item.visited } }, {}); console.log(result); /* outputs Berlin: "no" Genoa: "yes" Hamburg: "yes" Lyon: "no" Marseille: "yes" Milan: "no" New York: "yes" Palermo: "yes" Paris: "no" Rome: "yes" */
4. 陣列 map 的方法 (不使用Array.Map)
另一種陣列 map 的實現的方式,不用 Array.map。
Array.from 還可以接受第二個引數,作用類似於陣列的map方法,用來對每個元素進行處理,將處理後的值放入返回的陣列。如下:
const cities = [ { name: 'Paris', visited: 'no' }, { name: 'Lyon', visited: 'no' }, { name: 'Marseille', visited: 'yes' }, { name: 'Rome', visited: 'yes' }, { name: 'Milan', visited: 'no' }, { name: 'Palermo', visited: 'yes' }, { name: 'Genoa', visited: 'yes' }, { name: 'Berlin', visited: 'no' }, { name: 'Hamburg', visited: 'yes' }, { name: 'New York', visited: 'yes' } ]; const cityNames = Array.from(cities, ({ name}) => name); console.log(cityNames); // outputs ["Paris", "Lyon", "Marseille", "Rome", "Milan", "Palermo", "Genoa", "Berlin", "Hamburg", "New York"]
5. 有條件的物件屬性
不再需要根據一個條件建立兩個不同的物件,可以使用展開運算子號來處理。
nst getUser = (emailIncluded) => { return { name: 'John', surname: 'Doe', ...emailIncluded && { email : 'john@doe.com' } } } const user = getUser(true); console.log(user); // outputs { name: "John", surname: "Doe", email: "john@doe.com" } const userWithoutEmail = getUser(false); console.log(userWithoutEmail); // outputs { name: "John", surname: "Doe" }
6. 解構原始資料
有時候一個物件包含很多屬性,而我們只需要其中的幾個,這裡可以使用解構方式來提取我們需要的屬性。如一個使用者物件內容如下:
const rawUser = { name: 'John', surname: 'Doe', email: 'john@doe.com', displayName: 'SuperCoolJohn', joined: '2016-05-05', image: 'path-to-the-image', followers: 45 ... }
我們需要提取出兩個部分,分別是使用者及使用者資訊,這時可以這樣做:
let user = {}, userDetails = {}; ({ name: user.name, surname: user.surname, ...userDetails } = rawUser); console.log(user); // outputs { name: "John", surname: "Doe" } console.log(userDetails); // outputs { email: "john@doe.com", displayName: "SuperCoolJohn", joined: "2016-05-05", image: "path-to-the-image", followers: 45 }
7. 動態屬性名
早期,如果屬性名需要是動態的,我們首先必須宣告一個物件,然後分配一個屬性。這些日子已經過去了,有了ES6特性,我們可以做到這一點。
const dynamic = 'email'; let user = { name: 'John', [dynamic]: 'john@doe.com' } console.log(user); // outputs { name: "John", email: "john@doe.com" }
8.字串插值
在用例中,如果正在構建一個基於模板的helper元件,那麼這一點就會非常突出,它使動態模板連線容易得多。
const user = { name: 'John', surname: 'Doe', details: { email: 'john@doe.com', displayName: 'SuperCoolJohn', joined: '2016-05-05', image: 'path-to-the-image', followers: 45 } } const printUserInfo = (user) => { const text = `The user is ${user.name} ${user.surname}. Email: ${user.details.email}. Display Name: ${user.details.displayName}. ${user.name} has ${user.details.followers} followers.` console.log(text); } printUserInfo(user); // outputs 'The user is John Doe. Email: john@doe.com. Display Name: SuperCoolJohn. John has 45 followers.'
原文連結:https://devinduct.com/blogpost/26/8-useful-javascript-tricks
相關文章
- 8 個有用的 JS 技巧JS
- 【譯】8個有用的 CSS 技巧:視差影象,sticky footer 等等CSS
- 4個非常有用的 Flutter 技巧Flutter
- 五個最有用的Python技巧 - dannysteenmanPython
- [轉]23個最有用的Elasticsearch檢索技巧Elasticsearch
- 網上看到的“12個非常有用的JavaScript技巧”JavaScript
- 45個有用的JavaScript技巧,竅門和最佳實踐JavaScript
- 《三分鐘閱讀》7個有用的JavaScript技巧JavaScript
- 10個有用的自定義鉤子vue.jsVue.js
- MySQL8 非常有用的一個新特性MySql
- 23個最有用的ES檢索技巧(Java API實現)JavaAPI
- 8個關於Python的小技巧Python
- CSS效能優化的8個技巧CSS優化
- 11個常用JS小小技巧JS
- 14 個拷貝陣列的 JS 技巧陣列JS
- 處理 JS 中 undefined 的 7 個技巧JSUndefined
- 深入挖掘 MacOS 的8個隱藏技巧Mac
- [譯] 8 個技巧讓你在 2018 年構建更好的 Node.js 應用程式Node.js
- 構建Vue.js元件的10個技巧Vue.js元件
- 7個你可能不知道的蘋果Mac使用技巧 非常有用蘋果Mac
- 必知必會的8個Python列表技巧Python
- 11 個對開發有幫助的 JS 技巧JS
- 優化 JS 條件語句的 5 個技巧優化JS
- 如何“販賣”你的故事?8個實用技巧
- 圖片怎麼優化的8個小技巧優化
- 著陸資料科學工作的8個技巧!資料科學
- 避免警報疲勞:每個 K8s 工程團隊的 8 個技巧K8S
- 【翻譯】Traits:一種新的而且有用的Template技巧AI
- 您可能不瞭解git log的有用技巧 - Git BetterGit
- 掌握這20個JS技巧,做一個不加班的前端人JS前端
- 靈活運用JS開發技巧(66個實用技巧)JS
- 【js】中的小技巧JS
- 提升WordPress網站載入速度的8個小技巧網站
- 程式碼重構:類重構的 8 個小技巧
- 10個超級有用的Python工具!Python
- JS 常用技巧JS
- K8s必須掌握的7個除錯技巧K8S除錯
- 從DoorDash安卓應用中學到的8個技巧安卓