Say I\'ve got a Javascript string like the following
var fnStr = \"function(){blah1;blah2;blah3; }\" ;
(This may be from an expression the
There's also the Function object.
var adder = new Function("a", "b", "return a + b");