(广告,请勿屏蔽。)

测验 »

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