why referencing non-existent property of an object in javascript doesn't return a reference error?

后端 未结 1 1963
别那么骄傲
别那么骄傲 2020-12-01 16:19

If I try to reference a non-existent variable, I get ReferenceError in JavaScript. Why referencing a non-existent object property returns \'undefined\'? Here is some code, p

相关标签:
1条回答
  • 2020-12-01 16:46

    That's just how the language works. Its object-based approach is very flexible, and you can dynamically add, update, and remove properties from objects at runtime. Accessing one that is currently not existing should yield undefined instead of raising an exception. This, for example, allows checking for existence and type in a single expression:

    if (prop in obj && typeof obj[prop] == "function") obj[prop]();
    // can be written shorter:
    if (typeof obj[prop] == "function") obj[prop]();
    

    You can get the value without using it. Using undefined then will throw in most circumstances.

    In contrast, variables are declared statically in their scope. Accessing an undeclared variable is always an error, which legitimates throwing ReferenceErrors.

    0 讨论(0)
提交回复
热议问题