Skip to content

Instantly share code, notes, and snippets.

@Obayanju
Created March 25, 2017 21:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Obayanju/640a093c000a9e68adb3b97f14eb34f6 to your computer and use it in GitHub Desktop.
Save Obayanju/640a093c000a9e68adb3b97f14eb34f6 to your computer and use it in GitHub Desktop.
function foo (str, a) {
eval(str); //cheating
console.log(a, b);
}
var b = 2;
foo( "console.log(b);", 1 );//2, 1, 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment