編程風格
本章探討如何將 ES6 的新語法,運用到編碼實踐之中,與傳統的 JavaScript 語法結合在一塊兒,寫出合理的、易於閱讀和維護的代碼。javascript
多家公司和組織已經公開了它們的風格規範,下面的內容主要參考了 Airbnb 公司的 JavaScript 風格規範。java
塊級做用域
(1)let 取代 varnode
ES6 提出了兩個新的聲明變量的命令:let
和const
。其中,let
徹底能夠取代var
,由於二者語義相同,並且let
沒有反作用。react
'use strict';
if (true) {
let x = 'hello';
}
for (let i = 0; i < 10; i++) {
console.log(i);
}
上面代碼若是用var
替代let
,實際上就聲明瞭兩個全局變量,這顯然不是本意。變量應該只在其聲明的代碼塊內有效,var
命令作不到這一點。git
var
命令存在變量提高效用,let
命令沒有這個問題。es6
'use strict';
if (true) {
console.log(x); // ReferenceError
let x = 'hello';
}
上面代碼若是使用var
替代let
,console.log
那一行就不會報錯,而是會輸出undefined
,由於變量聲明提高到代碼塊的頭部。這違反了變量先聲明後使用的原則。github
因此,建議再也不使用var
命令,而是使用let
命令取代。npm
(2)全局常量和線程安全編程
在let
和const
之間,建議優先使用const
,尤爲是在全局環境,不該該設置變量,只應設置常量。數組
const
優於let
有幾個緣由。一個是const
能夠提醒閱讀程序的人,這個變量不該該改變;另外一個是const
比較符合函數式編程思想,運算不改變值,只是新建值,並且這樣也有利於未來的分佈式運算;最後一個緣由是 JavaScript 編譯器會對const
進行優化,因此多使用const
,有利於提供程序的運行效率,也就是說let
和const
的本質區別,實際上是編譯器內部的處理不一樣。
// bad
var a = 1, b = 2, c = 3;
// good
const a = 1;
const b = 2;
const c = 3;
// best
const [a, b, c] = [1, 2, 3];
const
聲明常量還有兩個好處,一是閱讀代碼的人馬上會意識到不該該修改這個值,二是防止了無心間修改變量值所致使的錯誤。
全部的函數都應該設置爲常量。
長遠來看,JavaScript 可能會有多線程的實現(好比 Intel 公司的 River Trail 那一類的項目),這時let
表示的變量,只應出如今單線程運行的代碼中,不能是多線程共享的,這樣有利於保證線程安全。
字符串
靜態字符串一概使用單引號或反引號,不使用雙引號。動態字符串使用反引號。
// bad
const a = "foobar";
const b = 'foo' + a + 'bar';
// acceptable
const c = `foobar`;
// good
const a = 'foobar';
const b = `foo${a}bar`;
const c = 'foobar';
解構賦值
使用數組成員對變量賦值時,優先使用解構賦值。
const arr = [1, 2, 3, 4];
// bad
const first = arr[0];
const second = arr[1];
// good
const [first, second] = arr;
函數的參數若是是對象的成員,優先使用解構賦值。
// bad
function getFullName(user) {
const firstName = user.firstName;
const lastName = user.lastName;
}
// good
function getFullName(obj) {
const { firstName, lastName } = obj;
}
// best
function getFullName({ firstName, lastName }) {
}
若是函數返回多個值,優先使用對象的解構賦值,而不是數組的解構賦值。這樣便於之後添加返回值,以及更改返回值的順序。
// bad
function processInput(input) {
return [left, right, top, bottom];
}
// good
function processInput(input) {
return { left, right, top, bottom };
}
const { left, right } = processInput(input);
對象
單行定義的對象,最後一個成員不以逗號結尾。多行定義的對象,最後一個成員以逗號結尾。
// bad
const a = { k1: v1, k2: v2, };
const b = {
k1: v1,
k2: v2
};
// good
const a = { k1: v1, k2: v2 };
const b = {
k1: v1,
k2: v2,
};
對象儘可能靜態化,一旦定義,就不得隨意添加新的屬性。若是添加屬性不可避免,要使用Object.assign
方法。
// bad
const a = {};
a.x = 3;
// if reshape unavoidable
const a = {};
Object.assign(a, { x: 3 });
// good
const a = { x: null };
a.x = 3;
若是對象的屬性名是動態的,能夠在創造對象的時候,使用屬性表達式定義。
// bad
const obj = {
id: 5,
name: 'San Francisco',
};
obj[getKey('enabled')] = true;
// good
const obj = {
id: 5,
name: 'San Francisco',
[getKey('enabled')]: true,
};
上面代碼中,對象obj
的最後一個屬性名,須要計算獲得。這時最好採用屬性表達式,在新建obj
的時候,將該屬性與其餘屬性定義在一塊兒。這樣一來,全部屬性就在一個地方定義了。
另外,對象的屬性和方法,儘可能採用簡潔表達法,這樣易於描述和書寫。
var ref = 'some value';
// bad
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;
},
};
數組
使用擴展運算符(...)拷貝數組。
// bad
const len = items.length;
const itemsCopy = [];
let i;
for (i = 0; i < len; i++) {
itemsCopy[i] = items[i];
}
// good
const itemsCopy = [...items];
使用 Array.from 方法,將相似數組的對象轉爲數組。
const foo = document.querySelectorAll('.foo');
const nodes = Array.from(foo);
函數
當即執行函數能夠寫成箭頭函數的形式。
(() => {
console.log('Welcome to the Internet.');
})();
那些須要使用函數表達式的場合,儘可能用箭頭函數代替。由於這樣更簡潔,並且綁定了 this。
// bad
[1, 2, 3].map(function (x) {
return x * x;
});
// good
[1, 2, 3].map((x) => {
return x * x;
});
// best
[1, 2, 3].map(x => x * x);
箭頭函數取代Function.prototype.bind
,不該再用 self/_this/that 綁定 this。
// bad
const self = this;
const boundMethod = function(...params) {
return method.apply(self, params);
}
// acceptable
const boundMethod = method.bind(this);
// best
const boundMethod = (...params) => method.apply(this, params);
簡單的、單行的、不會複用的函數,建議採用箭頭函數。若是函數體較爲複雜,行數較多,仍是應該採用傳統的函數寫法。
全部配置項都應該集中在一個對象,放在最後一個參數,布爾值不能夠直接做爲參數。
// bad
function divide(a, b, option = false ) {
}
// good
function divide(a, b, { option = false } = {}) {
}
不要在函數體內使用 arguments 變量,使用 rest 運算符(...)代替。由於 rest 運算符顯式代表你想要獲取參數,並且 arguments 是一個相似數組的對象,而 rest 運算符能夠提供一個真正的數組。
// bad
function concatenateAll() {
const args = Array.prototype.slice.call(arguments);
return args.join('');
}
// good
function concatenateAll(...args) {
return args.join('');
}
使用默認值語法設置函數參數的默認值。
// bad
function handleThings(opts) {
opts = opts || {};
}
// good
function handleThings(opts = {}) {
// ...
}
Map 結構
注意區分 Object 和 Map,只有模擬現實世界的實體對象時,才使用 Object。若是隻是須要key: value
的數據結構,使用 Map 結構。由於 Map 有內建的遍歷機制。
let map = new Map(arr);
for (let key of map.keys()) {
console.log(key);
}
for (let value of map.values()) {
console.log(value);
}
for (let item of map.entries()) {
console.log(item[0], item[1]);
}
Class
老是用 Class,取代須要 prototype 的操做。由於 Class 的寫法更簡潔,更易於理解。
// bad
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;
}
}
使用extends
實現繼承,由於這樣更簡單,不會有破壞instanceof
運算的危險。
// bad
const inherits = require('inherits');
function PeekableQueue(contents) {
Queue.apply(this, contents);
}
inherits(PeekableQueue, Queue);
PeekableQueue.prototype.peek = function() {
return this._queue[0];
}
// good
class PeekableQueue extends Queue {
peek() {
return this._queue[0];
}
}
模塊
首先,Module 語法是 JavaScript 模塊的標準寫法,堅持使用這種寫法。使用import
取代require
。
// bad
const moduleA = require('moduleA');
const func1 = moduleA.func1;
const func2 = moduleA.func2;
// good
import { func1, func2 } from 'moduleA';
使用export
取代module.exports
。
// commonJS的寫法
var React = require('react');
var Breadcrumbs = React.createClass({
render() {
return <nav />; } }); module.exports = Breadcrumbs; // ES6的寫法 import React from 'react'; class Breadcrumbs extends React.Component { render() { return <nav />; } }; export default Breadcrumbs;
若是模塊只有一個輸出值,就使用export default
,若是模塊有多個輸出值,就不使用export default
,export default
與普通的export
不要同時使用。
不要在模塊輸入中使用通配符。由於這樣能夠確保你的模塊之中,有一個默認輸出(export default)。
// bad
import * as myObject from './importModule';
// good
import myObject from './importModule';
若是模塊默認輸出一個函數,函數名的首字母應該小寫。
function makeStyleGuide() {
}
export default makeStyleGuide;
若是模塊默認輸出一個對象,對象名的首字母應該大寫。
const StyleGuide = {
es6: {
}
};
export default StyleGuide;
ESLint 的使用
ESLint 是一個語法規則和代碼風格的檢查工具,能夠用來保證寫出語法正確、風格統一的代碼。
首先,安裝 ESLint。
$ npm i -g eslint
而後,安裝 Airbnb 語法規則,以及 import、a11y、react 插件。
$ npm i -g eslint-config-airbnb $ npm i -g eslint-plugin-import eslint-plugin-jsx-a11y eslint-plugin-react
最後,在項目的根目錄下新建一個.eslintrc
文件,配置 ESLint。
{
"extends": "eslint-config-airbnb"
}
如今就能夠檢查,當前項目的代碼是否符合預設的規則。
index.js
文件的代碼以下。
var unusued = 'I have no purpose!';
function greet() {
var message = 'Hello, World!';
alert(message);
}
greet();
使用 ESLint 檢查這個文件,就會報出錯誤。
$ eslint index.js
index.js
1:1 error Unexpected var, use let or const instead no-var
1:5 error unusued is defined but never used no-unused-vars
4:5 error Expected indentation of 2 characters but found 4 indent
4:5 error Unexpected var, use let or const instead no-var
5:5 error Expected indentation of 2 characters but found 4 indent
✖ 5 problems (5 errors, 0 warnings)
上面代碼說明,原文件有五個錯誤,其中兩個是不該該使用var
命令,而要使用let
或const
;一個是定義了變量,卻沒有使用;另外兩個是行首縮進爲 4 個空格,而不是規定的 2 個空格。