For example, I have the following code:
function f(p) { for(var i=0;i<1;i++) { p=unescape(p); } return p; } var c='something';
code> When I pass it in the firebug console, it returns undefined. That's good now
When I try to run it using ExecJS. ExecJS returns: ExecJS :: RuntimeError: SyntaxError: Unexpected var token
I canβt figure out where to start looking for a problem. Does anyone have an idea?
source share