Trying hard to replace the eval without using Function constructor. Stumped. I am not a newbie but not an expert either.
jslint says this is evil; when I replaced it with a Function constructor, it said that was just a form of eval()!
evaluateEventScript: function(requestObject) {
var resultData;
resultData = eval(requestObject.script);
//send resultData elsewhere...
}
Help??