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