- typeof
typeof("") //string
typeof([]) //object
typeof({}) //object
- Array.isArray()
Array.isArray("") //false
Array.isArray({}) //false
Array.isArray([]) //true
- constructor
let a="",b=[],c={};
a. constructor === String //true
b. constructor === Array //true
c. constructor === Object //true