Hacker News new | ask | show | jobs
by marcopolo 4673 days 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.