Case 1:
function testFunc (boolInput) {
var someBool = boolInput || true;
.....
}
Review code的時後發現, 就問"傳false進去有用嗎??? "......
Case 2:
.....
if (1 == 1) {
testFunc();
}
.....
這是某印度同事搞出來的, 還過了code review進了dev code base, 我剛好賽
到去sync到然後發現, 當初review的那個人還坐我旁邊XD
這就算了,有時後changed files太多會漏看diff, 重點是.... 這個印度人從
此之後被笑
"You know 'if (true)' works the same? and you type less code.."