Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to create a function with a dynamic name? Something like:

function create_function(name){
   new Function(name, 'console.log("hello world")');
}
create_function('example');
example(); // --> 'hello world'

Also the function should be a Function Object so I can modify the prototype of the object.

share|improve this question
Could you explain what problem you are trying to solve? – Philipp Jan 6 at 1:44

2 Answers

up vote 3 down vote accepted
window.example = function () { alert('hello world') }
example();

or

name = 'example';
window[name] = function () { ... }
...

or

window[name] = new Function('alert("hello world")')
share|improve this answer
Add a fiddle in your answer. – Sheikh Heera Jan 6 at 1:46

Here's a basic implementation.

"use strict"; 
var name = "foo"; 
var func = new Function(
     "return function " + name + "(){ alert('sweet!')}"
)();
//function call
func();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.