The following two lines of javascript code cause the Uncaught SyntaxError:
var testObj = JSON.parse('{ testFunc: function () { console.log("whoa there"); }}');
testObj["testFunc"]();
I don't understand what is invalid about my json string.