Using the variable “name” doesn't work with a JS object

后端 未结 4 2116
不知归路
不知归路 2020-11-21 06:11

The behaviour can be seen in this little snippet (execute it as a global script):

var name = {};
name.FirstName = \'Tom\';
alert(name.FirstName);
         


        
4条回答
  •  佛祖请我去吃肉
    2020-11-21 06:42

    window.name has a special purpose, and is supposed to be a string. Chrome seems to explicitly cast it to a string, so var name = {}; actually ends up giving the global variable name (i.e. window.name) a value of "[object Object]". Since it's a primitive, properties (name.FirstName) won't "stick."

    To get around this issue, don't use name as a global variable.

提交回复
热议问题