I have this array object that contains arrays:
var webApps = [
['leave empty']
];
I'm ajaxing in some content and the end ajax resulting string will be something like this:
ajaxResult = ',["Alex","Somewhere, NY, 11334"],["Zak","Cherryville, FL, 33921"]';
My question is, how do I take the returned string and add it to the webApps array?