Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save joebutler2/9591757 to your computer and use it in GitHub Desktop.
Save joebutler2/9591757 to your computer and use it in GitHub Desktop.
var funcs = ['functionOne', 'functionTwo', 'functionThree'];
for(func in funcs) {
(function (func_name) {
window[func_name] = function () {
console.log('My name is ' + func_name);
}
})(funcs[func]);
}
functionOne();
functionTwo();
functionThree();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment