以下の表現でオブジェクトを作成するものはどれですか?
次のアサーションは何ですか?
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;
何が起こりますか?