I have a function:
var greet = function (name) {
console.log("Hi " + name);
}
If I have a string "greet('eric')" is it possible to convert it to a function call passing "eric" as argument?
|
I have a function:
If I have a string "greet('eric')" is it possible to convert it to a function call passing "eric" as argument? |
|||
|
|
|
eval() is your friend ! http://www.w3schools.com/jsref/jsref_eval.asp |
|||||||||||||||||
|
|
You, me, him her and them fWord('ing') hate eval. There's always another way.
Replace window reference with whatever. |
|||
|
|
|
I'm not sure I've understood your question correctly, but are you looking for the eval() function?
|
|||
|
|
|
without
Bottom line 1: use eval with care Just to be sure you have all possibilities @ your disposal: |
||||
|
|