gloabal declaring using thisObject code example
Example 1: access method globally js
window.checkCookie = function(){
// do whatever you want here
};
Example 2: global scope js
const color = 'blue'
const returnSkyColor = () => {
return color; // blue
};
console.log(returnSkyColor()); // blue