ES6以前咱們用var聲明一個變量,可是它有不少弊病:node
var a = [];
for (var i = 0; i < 10; i++) {
a[i] = function () {
console.log(i);
};
}
a[6](); // 10
a[7](); // 10
a[8](); // 10
a[9](); // 10
複製代碼
因此,你如今還有什麼理由不用let?react
const和let的惟一區別就是,const不能夠被更改,因此當聲明變量的時候,尤爲是在聲明容易被更改的全局變量的時候,儘可能使用const。面試
不要使用「雙引號」,一概用單引號或反引號數組
// low
const a = "foobar";
const b = 'foo' + a + 'bar';
// best
const a = 'foobar';
const b = `foo${a}bar`;
const c = 'foobar';
複製代碼
在用到數組成員對變量賦值時,儘可能使用解構賦值。bash
const arr = [1, 2, 3, 4];
// low
const first = arr[0];
const second = arr[1];
// good
const [first, second] = arr;
複製代碼
函數的參數若是是對象的成員,優先使用解構賦值。ide
// low
function getFullName(user) {
const firstName = user.firstName;
const lastName = user.lastName;
}
// good
function getFullName({ firstName, lastName }) {
}
複製代碼
若是函數返回多個值,優先使用對象的解構賦值,而不是數組的解構賦值。這樣便於之後添加返回值,以及更改返回值的順序。模塊化
// low
function processInput(input) {
return [left, right, top, bottom];
}
// good
function processInput(input) {
return { left, right, top, bottom };
}
const { left, right } = processInput(input);
複製代碼
單行定義的對象結尾不要逗號:函數
// low
const a = { k1: v1, k2: v2, };
// good
const a = { k1: v1, k2: v2 };
複製代碼
多行定義的對象要保留逗號:優化
// low
const b = {
k1: v1,
k2: v2
};
// good
const b = {
k1: v1,
k2: v2,
};
複製代碼
不要聲明以後又給對象添加新屬性:ui
// low
const a = {};
a.x = 3;
// good
const a = { x: null };
a.x = 3;
複製代碼
若是必定非要加請使用Object.assign:
const a = {};
Object.assign(a, { x: 3 });
複製代碼
若是對象的屬性名是動態的,能夠在創造對象的時候,使用屬性表達式定義:
// low
const obj = {
id: 5,
name: 'San Francisco',
};
obj[getKey('enabled')] = true;
// good
const obj = {
id: 5,
name: 'San Francisco',
[getKey('enabled')]: true,
};
複製代碼
在定義對象時,能簡潔表達儘可能簡潔表達:
var ref = 'some value';
// low
const atom = {
ref: ref,
value: 1,
addValue: function (value) {
return atom.value + value;
},
};
// good
const atom = {
ref,
value: 1,
addValue(value) {
return atom.value + value;
},
};
複製代碼
使用擴展運算符(...)拷貝數組:
// 還在用for i 你就太low了
const len = items.length;
const itemsCopy = [];
let i;
for (i = 0; i < len; i++) {
itemsCopy[i] = items[i];
}
// cool !
const itemsCopy = [...items];
複製代碼
用 Array.from 方法,將相似數組的對象轉爲數組:
const foo = document.querySelectorAll('.foo');
const nodes = Array.from(foo);
複製代碼
當即執行函數能夠寫成箭頭函數的形式:
(() => {
console.log('Welcome to the Internet.');
})();
複製代碼
儘可能寫箭頭函數使你的代碼看起來簡潔優雅:
// low
[1, 2, 3].map(function (x) {
return x * x;
});
// cool !
[1, 2, 3].map(x => x * x);
複製代碼
// low
function divide(a, b, option = false ) {
}
// good
function divide(a, b, { option = false } = {}) {
}
複製代碼
使用 rest 運算符(...)代替,rest 運算符能夠提供一個真正的數組。
// low
function concatenateAll() {
const args = Array.prototype.slice.call(arguments);
return args.join('');
}
// good
function concatenateAll(...args) {
return args.join('');
}
複製代碼
// low
function handleThings(opts) {
opts = opts || {};
}
// good
function handleThings(opts = {}) {
// ...
}
複製代碼
若是隻是簡單的key: value結構,建議優先使用Map,由於Map提供方便的遍歷機制。
let map = new Map(arr);
// 遍歷key值
for (let key of map.keys()) {
console.log(key);
}
// 遍歷value值
for (let value of map.values()) {
console.log(value);
}
// 遍歷key和value值
for (let item of map.entries()) {
console.log(item[0], item[1]);
}
複製代碼
// low
function Queue(contents = []) {
this._queue = [...contents];
}
Queue.prototype.pop = function() {
const value = this._queue[0];
this._queue.splice(0, 1);
return value;
}
// good
class Queue {
constructor(contents = []) {
this._queue = [...contents];
}
pop() {
const value = this._queue[0];
this._queue.splice(0, 1);
return value;
}
}
複製代碼
使用import取代require,由於Module是Javascript模塊的標準寫法。
// bad
const moduleA = require('moduleA');
const func1 = moduleA.func1;
const func2 = moduleA.func2;
// good
import { func1, func2 } from 'moduleA';
複製代碼
使用export輸出變量,拒絕module.exports:
import React from 'react';
class Breadcrumbs extends React.Component {
render() {
return <nav />;
}
};
export default Breadcrumbs;
複製代碼
export default
export
export default
與普通的export
不要同時使用function getData() {
}
export default getData;
複製代碼
const Person = {
someCode: {
}
};
export default Person ;
複製代碼