Skip to content

Instantly share code, notes, and snippets.

@Obayanju
Last active March 25, 2017 21:13
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/8d9b12441ecba8987b66a9f9ea7ebd63 to your computer and use it in GitHub Desktop.
Save Obayanju/8d9b12441ecba8987b66a9f9ea7ebd63 to your computer and use it in GitHub Desktop.
function foo (str, a) {
eval(str); //cheating
console.log(a, b);
}
var b = 2;
foo( "var b = 3;", 1);//1, 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment