JavaScript中for循环和while循环使用continue的区别
示例:求1~9中除了5之外所有数相加之和。使用while循环中用continue的代码:var i=1,n=0;while(i<10){ if(i==5){ i++; continue; } n=n+i; i++;}document.write(n);使用for循环中使用continue的代码:var...