How do I now check if the value is defined as undefined, or if it s really not defined?
eg.
var a = [];
a[0] = undefined;
// a defined value that s undefined
typeof a[0] === "undefined";
// and a value that hasn t been defined at all
typeof a[1] === "undefined";
是否有办法将这两者分开? 可能利用旁边的通道穿透阵列,但情况如何?