πŸ“š 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';