(広告、ブロックしないでください。)

クイズ »

1.プリミティブ値とオブジェクト

以下の表現でオブジェクトを作成するものはどれですか?

2.等価性

次のアサーションは何ですか?

3. typeof

const result = typeof '';

何が起こりますか?

4. typeof

const result = typeof [];

何が起こりますか?

5. typeof

const result = typeof function () {};

何が起こりますか?

6. typeof

const result = typeof null;

何が起こりますか?

7. instanceof

const result = '' instanceof String;

何が起こりますか?

8. instanceof

const result = [] instanceof Array;

何が起こりますか?


正解00