2013年1月12日
摘要: breakfor(var i=0;i<10;i++){ if(i==3) break; console.log(i) //1,2,3}switch , casefunction main(arg){ switch(arg){ case 1: console.log(1); break; case 2: console.log(2); break; case 3: console.log(3); brea... 阅读全文
posted @ 2013-01-12 21:48 somesayss 阅读(2678) 评论(0) 推荐(0) 编辑