
동적 타이핑 (Dynamic Typing)
let text = 'hello';
console.log(`value: ${text}, type: ${typeof text}`);
//결과 : value: hello, type: string
text = 1;
console.log(`value: ${text}, type: ${typeof text}`);
//결과 : value: 1, type: number
text = '7' + 2;
console.log(`value: ${text}, type: ${typeof text}`);
//결과 : value: 72, type: string
text = '8' / '2';
console.log(`value: ${text}, type: ${typeof text}`);
//결과 : value: 4, type: number
let text = 'hello';
console.log(text.chartAt(0));
//결과 : h
text = '8' / '2';
console.log(text.chartAt(0));
//결과 : 런타임에러 ..