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
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.