Is there any way that I can pass a function as a json string (conversion with JSON.stringify), send it to another function, parse the json and then execute the function that
I've found it helpful to use the JavaScript call() function when working with functions in JSON files.
var returnData = theJsonData.theFunction.call(); console.log(returnData); // prints any return data
I hope that helps anyone that stops by!