continue
by qwerew0
JavaScript
var x = 0; //x에 0할당
var total = 0; //total에 0할당
while (x < 10) { //x는 0~9
x++; //x=x+1 // document.write(x++)->0
//if (x == 3) continue;
total = total + x; //0=0+1, 1=1+1...
document.write(x); //1~9(10)
if (x != 10) document.write("+");
}
document.write("="+ total)