6 ms·
The problem lies when you have the function accessible in the global scope. Example: A = E; E = function(x){ window.secret=A(x); return window.secret };
by marcopolo 13y ago
The problem lies when you have the function accessible in the global scope. Example:
A = E; E = function(x){
window.secret=A(x);
return window.secret
};
As you can just change how the function works.