let coffee : 'americano';
coffee = 'americano';
coffee = latte; // 다른 값 넣으면 오류!
let coffee : 'americano' | 'latte';
coffee = 'americano';
coffee = 'latte';
function sayHi(a : 'hi'):void{
console.log(a);
}
sayHi('hi');
let bow = {word : 'hello'}
function sayHello(bow : 'hello'):void{
console.log(bow);
}
sayHello(bow.word) // 오류!!
let bow : {word : 'hello'} = {word : 'hello'};
sayHello(bow.word as 'hello');
let bow = {word : 'hello'} as const;
sayHello(bow.word);
🌟 잘못된 부분에 대한 말씀은 언제나 저에게 큰 도움이 됩니다. 🌟
👍 감사합니다!! 👍