Can I add attributes to 'window' object in javascript?

前端 未结 7 1266
故里飘歌
故里飘歌 2020-12-13 18:02

Can I add any random attribute to \'window\' object in javascript? Some thing like:

window.my_own_attr = \"my_value\"

Does it have any side

7条回答
  •  执笔经年
    2020-12-13 18:12

    That 'll work fine, no conflict with any library until used same variable name, will work in all browsers, but not recommended as this will create global JS variable.

提交回复
热议问题