let a = 10; let b = 2; for(var i=1; i<5; i+=2){ a += i; } console.log(a+b);
다음 코드의 출력 값은? 14
i=1, a = 10 + 1 = 11 i=3, a = 11 + 3 = 14