Skip to content

Instantly share code, notes, and snippets.

@temberature
Created November 28, 2018 10:45
Show Gist options
  • Save temberature/46ead442269bf368986acb436230f642 to your computer and use it in GitHub Desktop.
Save temberature/46ead442269bf368986acb436230f642 to your computer and use it in GitHub Desktop.
var a = function(){console.log('原始');}
console.log(a, a())
var b = eval('(' + a.toString().replace('(){', '(){console.log("开头");').replace('}', 'console.log("结尾");}') + ')')
console.log(b, b())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment