(广告,请不要屏蔽。)

测验 »

1. 类 (1/3)

const result = typeof class extends Array {}

结果?

2. 类 (2/3)

const result = new Foo(3).length;
class Foo extends Array {}

会发生什么?

3. 类 (3/3)

class Foo extends Array {}
const result = new Foo(3).length;

会发生什么?


正确答案00