Skip to content

Instantly share code, notes, and snippets.

@ChaosSteffen
Created April 15, 2010 21:24
Show Gist options
  • Save ChaosSteffen/367684 to your computer and use it in GitHub Desktop.
Save ChaosSteffen/367684 to your computer and use it in GitHub Desktop.
function defineFunction(name, func) {
eval(name + " = " + String(func) + ";");
}
defineFunction("hello", function(){ return 'world' });
hello();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment