๐Ÿ“š Reference


๐Ÿ“œ Chapter


null, undefined

โ€ฃ

any


// ๋ช…์‹œ์ ์œผ๋กœ any ํƒ€์ž… ์ง€์ •
let product_id:any = 124981;

// any ์œ ํ˜•์ด ์„ค์ •๋˜์—ˆ์œผ๋ฏ€๋กœ ์–ด๋–ค ์œ ํ˜•๋„ ๊ฐ’์œผ๋กœ ํ• ๋‹น ๊ฐ€๋Šฅ
product_id = 'p9023412';
// ์•”์‹œ์ ์œผ๋กœ any ํƒ€์ž… ์ง€์ •
let product_id;

product_id = 124981;
product_id = 'p9023412';