TypeOf And InstanceOf
Both:
TypeOf:
console.log(typeof 123); //number
console.log(typeof 'jartto'); //string
console.log(typeof !!'0'); //boolean
console.log(typeof new Function()); //function
console.log(typeof name); //undefinedconsole.log(typeof x);
let x;InstanceOf:
擴展:
分析 [ ]、Array、Obj 的關係(或者說順序)
圖示說明-1:

圖示說明-2:

More Explained:
Last updated