javascript

[javascript] #5. typeof (boolean, string, number...)

기계학습점쟁이 2023. 2. 15. 15:44

js는 항상 type를 체크해야 된다. (boolean, string, number...)

console.log(typeof "111231")

number, boolean, undefined, function, string을 체크하려면 typeof 사용, array는 instaceof 사용.