以下哪些表达式会产生对象?
哪些断言成立?
typeof
const result = typeof '';
会发生什么?
typeof
const result = typeof [];
会发生什么?
typeof
const result = typeof function () {};
会发生什么?
typeof
const result = typeof null;
会发生什么?
instanceof
const result = '' instanceof String;
会发生什么?
instanceof
const result = [] instanceof Array;
会发生什么?