typeof vs instanceof
🏷️ Javascript
typeof
: check if a value is an element of primitive type
typeof object
-> object
typeof function
-> function
instanceof
: check if a value is an instace of a class or a constructor function
🏷️ Javascript
typeof
: check if a value is an element of primitive type
typeof object
-> object
typeof function
-> function
instanceof
: check if a value is an instace of a class or a constructor function