undefined
JS undefined κ³Ό null λΉκ΅
undefined κ³Ό null μ λ λ€ ν ν λΉ μνλ₯Ό λ§νλλ°, λ―Έλ¬ν μ°¨μ΄κ° μμ΅λλ€. let item; // κ°μ΄ μμ§ ν λΉ λμ§ μμ μν console.log(item); // κ²°κ³Ό : undegined item = null; // λΉ κ°μ΄ λΌλ κ²μ ν λΉ ν΄μ€ μν console.log(item); // κ²°κ³Ό : null λν νμ μμλ μ°¨μ΄κ° λ©λλ€. console.log(typeof null); // object console.log(typeof nudefined); // undefined null μ μλ°ν λ§νμλ©΄, λΉμ΄μλ κ°μ²΄μ λλ€. κ·Έλ¬λ undefined λ λΉμ΄μλμ§ μλμ§ λͺ¨λ₯΄λ μνλ₯Ό λν λ λλ€. 곡λΆλ₯Ό νλ€ λ³΄λ©΄ μΆλ ₯ κ°μμ null νΉμ undefined λ₯Ό λ§μ£ΌμΉλ..