老司機手把手教你寫一手爛代碼,話很少說,上代碼。javascript
Good 👍🏻java
let mingzi = 'Allan';
Bad 👎🏻json
let name = 'Allan';
Good 👍🏻緩存
const foo = maybe1 > maybe2 ? "bar" : value1 > value2 ? "baz" : null;
Bad 👎app
const foo = maybe1 > maybe2 ? 'bar' : maybeNull;
Good 👍🏻單元測試
if(condition1) { if(condition2) { if(condition3) { if(condition4) { ... } } } }
Bad 👎🏻測試
if(condition1 && condition2) { ... }
Good 👍🏻fetch
<div :class="{'not-join': status === 'allow' && !item.is_select}" v-for="(item, index) in list" :key="index" @click="check(item)" class="activity-item"></div>
Bad 👎🏻this
<div :class="{'not-join': status === 'allow' && !item.is_select}" v-for="(item, index) in list" :key="index" @click="check(item)" class="activity-item" ></div>
Good 👍🏻url
const asdfgh = 18;
Bad 👎
const age = 18;
Good 👍🏻
let a = 18;
Bad 👎🏻
let age = 18;
Good 👍
const sayHi = function (name) { return 'How are you, ' + name + '?'; };
Bad 👎
const sayHi = function (name) { return `How are you, ${name}?`; };
Good 👍
if (isValid === true) { // ... }
Bad 👎
if (isValid) { // ... }
Good 👍
let color = ''; if(condition1) { color = {a: 'red'}; } else { color = ['red', 'yellow', 'blue']; }
Bad 👎
let color = ''; if (condition1) { color = 'red'; } else { color = 'yellow'; }
Good 👍
$(".disappear").click(function(){ $("#row20").animate({ "opacity": "0" }, 100, function(){$("#row19").animate({ "opacity": "0" }, 100, function(){$("#row18").animate({ "opacity": "0" }, 100, function(){$("#row17").animate({ "opacity": "0" }, 100, function(){$("#row16").animate({ "opacity": "0" }, 100, function(){$("#row15").animate({ "opacity": "0" }, 100, function(){$("#row14").animate({ "opacity": "0" }, 100, function(){$("#row13").animate({ "opacity": "0" }, 100, function(){$("#row12").animate({ "opacity": "0" }, 100, function(){$("#row11").animate({ "opacity": "0" }, 100, function(){$("#row10").animate({ "opacity": "0" }, 100, function(){$("#row9").animate({ "opacity": "0" }, 100, function(){$("#row8").animate({ "opacity": "0" }, 100, function(){$("#row7").animate({ "opacity": "0" }, 100, function(){$("#row6").animate({ "opacity": "0" }, 100, function(){$("#row5").animate({ "opacity": "0" }, 100, function(){$("#row4").animate({ "opacity": "0" }, 100, function(){$("#row3").animate({ "opacity": "0" }, 100, function(){$("#row2").animate({ "opacity": "0" }, 100, function(){$("#row1").animate({ "opacity": "0" }, 100)})})})})})})})})})})})})})})})})}
Bad 👎
fetch(url) .then(response => { return response.json().then(data => { if (response.ok) { return data; } else { return Promise.reject({status: response.status, data}); } }); }) .then(result => console.log('success:', result)) .catch(error => console.log('error:', error));
Good 👍
// 清除緩存最快的方法,沒有之一 <header> <a href="javascript:alert('清除成功!')">清除緩存</a> </header>
Good 👍
for(let i = 0; i < 10; i++) { this.save(); }