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

Whereas using eval is not a good programming practice. This question is for didactic nature, or to learn a better solution:

See the following example in Javascript:

var foo = foo || {};
foo.bar = function(str) { alert(str); };

foo.bar('aaa'); // trigger alert('aaa')
window['foo']['bar']('bbb'); // trigger alert('bbb')

I'm searching for an generic caller to work with foo.bar('str'), foo.nestedObj.bar(params), foo.n2.n[1..99].bar(params)

Thats because I can't call something like:

param = [5,2,0];
call = 'foo.bar';
window[call](param); // not work

But I can call function using eval:

param = [5,2,0];
call = 'foo.bar'
eval(call + '(param)'); // works

How can I do this WITHOUT eval?

share|improve this question
This is asked almost every day. Just wait a minute, looking for the dupes. – dystroy Jan 23 at 11:45
1  
1  
possible duplicate of is it evil to use eval to convert a string to a function? – dystroy Jan 23 at 11:47
The dupe I linked too has a list of other dupes included. – dystroy Jan 23 at 11:48

2 Answers

I have answered this before, but here it goes again:

function genericFunction(path) {

    return [window].concat(path.split('.')).reduce(function(prev, curr) {
        return prev[curr];
    });

}

var param = [5, 2, 0];
var foo = { bar: function(param) { return param.length; } };

genericFunction('foo.bar')(param);

// => 3
share|improve this answer
Please do not post duplicate answers. Just link to your previous post and cast a closevote. – thg435 Jan 23 at 16:47
This is actually not a duplicate answer. I modified and improved this one. – Amberlamps Jan 23 at 16:49
up vote 0 down vote accepted
callback = "foo.bar";
var p = callback.split('.'),
c = window; // "parent || window" not working in my tests of linked examples
for (var i in p) {
    if (c[p[i]]) {
        c = c[p[i]];
    } 
}
c('aaa');

And this solves the problem. Thanks!

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.