아래 연산의 결과와 타입을 예측해보고, 실제로 출력해보세요.
const a = 1 + '2'; const b = '3' + 4; const c = 5 + 6;
const a = 1 + '2';
const b = '3' + 4;
const c = 5 + 6;
console.log(a, typeof a); // '12', string
console.log(b, typeof b); // '34', string
console.log(c, typeof c); // 11, number