1.确保这个值等于ture

- if (someBoolean == true) {
 - doSomething();
 - }
 
2.只有等于ture时我才return ture
- if (result == true)
 - return true;
 - else
 - return result;
 
3.我就是不信任if
- if (result <= 10) {
 - handling();
 - }
 - else if (result > 10) {
 - otherHandling();
 - }
 - else {
 - handling(); // to be sure
 - }
 
4.要写出一看就懂的代码
- function DocumentDotWrite(s){
 - document.write(s);
 - }
 
原文链接:http://www.aqee.net/horrible-code/
Copyright © 2009-2022 www.wtcwzsj.com 青羊区广皓图文设计工作室(个体工商户) 版权所有 蜀ICP备19037934号