如何讓你的JS代碼更好看易讀
作為JS程序員,自己寫的代碼如果好看易讀,不只是自己看起來(lái)好看,在別的程序員接手以后,也會(huì)是交接工作異常順利。
不要在代碼中留大段注釋掉的代碼
留給git去管理,不然你要git干嘛
// bad
// function add() {
// const a = b + c
// return a
// }
function add() {
return a + 1000
}
// good
function add() {
return a + 1000
}
適當(dāng)?shù)負(fù)Q行
// bad
function a() {
const {
state_a,
state_b,
state_c
} = this.state
this.setState({state_a: state_a * 2})
return 'done'
}
// good
function a() {
const {
state_a,
state_b,
state_c
} = this.state
this.setState({state_a: state_a * 2})
return 'done'
}
適當(dāng)?shù)奶砑幼⑨?,但不要瘋狂的添加注?br />
對(duì)一段代碼或者一行特別需要注意的代碼注釋
不要瘋狂的注釋,太啰嗦,漂亮的代碼自己會(huì)說(shuō)話
// bad const a = 'a' // 這是a const b = 'b' // 這是b const c = 'c' // 這是c // good /** * 申明變量 */ const a = 'a' const b = 'b' const c = 'c'
將類似行為、命名的代碼歸類在一起
// bad
function handleClick(arr) {
const a = 1
arr.map(e => e + a)
const b = 2
return arr.length + b
}
// good
function handleClick(arr) {
const a = 1
const b = 2
arr.map(e => e + a)
return arr.length + b
}
在不破壞語(yǔ)義性的情況下,'能省則省'
牢記js中函數(shù)是一等公民
但是,如果省略到影響可讀性了,就是失敗的
在可讀性和簡(jiǎn)潔性至今必須選一個(gè)的話,永遠(yuǎn)先選可讀性
function add(a) {
return a + 1
}
function doSomething() {
}
// bad
arr.map(a => {
return add(a)
})
setTimeout(() => {
doSomething()
}, 1000)
// good
arr.map(add)
setTimeout(doSomething, 1000)
箭頭函數(shù)
// bad
const a = (v) => {
return v + 1
}
// good
const a = v => v + 1
// bad
const b = (v, i) => {
return {
v,
i
}
}
// good
const b = (v, i) => ({v, i})
// bad
const c = () => {
return (dispatch) => {
// doSomething
}
}
// good
const c = () => dispatch => {
// doSomething
}
提前對(duì)對(duì)象取值(寫react的同學(xué)一定懂)
// bad
const a = this.props.prop_a + this.props.prop_b
this.props.fun()
// good
const {
prop_a,
prop_b,
fun
} = this.props
const a = prop_a + prop_b
fun()
合理使用各種表達(dá)式
// bad
if (cb) {
cb()
}
// good
cb && cb()
// bad
if (a) {
return b
} else {
return c
}
// good
return a ? b : c
// bad
if (a) {
c = a
} else {
c = 'default'
}
// good
c = a || 'default'
鏈?zhǔn)秸{(diào)用寫法
// bad
fetch(url).then(res => {
return res.json()
}).then(() => {
// doSomething
}).catch(e => {
})
// good
fetch(url)
.then(res => {
return res.json()
})
.then(() => {
// doSomething
})
.catch(e => {
})
保持代碼是縱向發(fā)展的
發(fā)現(xiàn)那些在整個(gè)文件中特別'突出'的代碼時(shí),應(yīng)該考慮對(duì)他們做換行處理了
// bad return handleClick(type, key, ref, self, source, props) // good return handleClick( type, key, ref, self, source, props ) // bad const a = this.props.prop_a === 'hello' ? <di>world</div> : null // good const a = this.props.prop_a === 'hello' ? <di>world</div> : null
相關(guān)文章
JavaScript cookie詳解及簡(jiǎn)單實(shí)例應(yīng)用
這篇文章主要介紹了JavaScript cookie詳解及簡(jiǎn)單實(shí)例應(yīng)用的相關(guān)資料,這里對(duì)js cookie 的介紹及基本屬性和簡(jiǎn)單應(yīng)用做了詳解,需要的朋友可以參考下2016-12-12
Flash對(duì)聯(lián)廣告的關(guān)閉按鈕討論
Flash對(duì)聯(lián)廣告的關(guān)閉按鈕討論...2007-01-01
javaScript知識(shí)點(diǎn)總結(jié)(必看篇)
下面小編就為大家?guī)?lái)一篇javaScript知識(shí)點(diǎn)總結(jié)(必看篇)。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享 給大家,也給的大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-06-06
全面了解JavaScirpt 的垃圾(garbage collection)回收機(jī)制
下面小編就為大家?guī)?lái)一篇全面了解JavaScirpt 的垃圾(garbage collection)回收機(jī)制。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-07-07
實(shí)例解析JS布爾對(duì)象的toString()方法和valueOf()方法
這篇文章主要介紹了JS的布爾對(duì)象的toString()方法和valueOf()方法,是JavaScript入門學(xué)習(xí)中的基礎(chǔ)知識(shí),需要的朋友可以參考下2015-10-10
javascript 全等號(hào)運(yùn)算符使用說(shuō)明
看到這樣一行代碼 if(typeof item === "string" ) ,看見(jiàn)有3個(gè)等號(hào)以前從沒(méi)這么寫過(guò),可能是我的JS技術(shù)還處于初級(jí)的原因吧,我去網(wǎng)上查了一些資料網(wǎng)上說(shuō)這是全等于符號(hào)2010-05-05

