让人抓狂的代码_程序人生_非技术区_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 非技术区 > 程序人生 > 让人抓狂的代码

让人抓狂的代码

 2012/10/15 10:46:30    程序员俱乐部  我要评论(0)
  • 摘要:1.确保这个值等于tureif(someBoolean==true){doSomething();}2.只有等于ture时我才returntureif(result==true)returntrue;elsereturnresult;3.我就是不信任ifif(result<=10){handling();}elseif(result>10){otherHandling();}else{handling();//tobesure}4
  • 标签:代码

  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);
}
发表评论
用户名: 匿名