(广告,请勿屏蔽。)

测验 » 非值 undefinednull

1. 访问属性

const result = true.unknownProperty;

会发生什么?

2. 访问属性

const result = null.unknownProperty;

会发生什么?

3. undefined 还是 null

给出以下 JavaScript 代码。

let foo;
function bar() {}
const baz = (x) => x;

以下哪个表达式求值为 undefined?其余的求值为 null


正确答案00