다음 코드의 출력 값으로 알맞은 것은?
var a = 10; var b = 2; for(var i=1; i<5; i+=2){ a += i; } console.log(a+b);
10
12
14
16