SEB FE / Section1 / Unit2 / JavaScript κΈ°μ΄
π Today I Learned
- JavaScript 7κ°μ§ λ°μ΄ν° νμ
typeof
μ°μ°μ
typeof
μ°μ°μλ νΌμ°μ°μμ νκ° μ μλ£νμ λνλ΄λ λ¬Έμμ΄μ λ°ννλ€.
console.log(typeof 112);
console.log(typeof 119);
// number
console.log(typeof '112');
console.log(typeof '119');
// string
console.log(typeof (5 < 9))
console.log(typeof (5 > 9))
// boolean
let music;
console.log(typeof music);
// undefined
console.log(typeof {name: "moeing", age: 1, study: true});
console.log(typeof ['piper', 'boze', 'niki']);
// object
ν¨μλ νμ
λΌλ κ². undefined
μ null
μ ν·κ°λ¦¬μ§ μμμΌ νλ€.