以下の表現でオブジェクトを作成するものはどれですか?
次のアサーションは何ですか?
typeofconst result = typeof '';
何が起こりますか?
typeofconst result = typeof [];
何が起こりますか?
typeofconst result = typeof function () {};
何が起こりますか?
typeofconst result = typeof null;
何が起こりますか?
instanceofconst result = '' instanceof String;
何が起こりますか?
instanceofconst result = [] instanceof Array;
何が起こりますか?