Welche der folgenden Ausdrücke erzeugen Objekte?
Welche Aussagen gelten?
typeofconst result = typeof '';
Was passiert?
typeofconst result = typeof [];
Was passiert?
typeofconst result = typeof function () {};
Was passiert?
typeofconst result = typeof null;
Was passiert?
instanceofconst result = '' instanceof String;
Was passiert?
instanceofconst result = [] instanceof Array;
Was passiert?