Looking for help!
{"Task": [Hours per Day],"Work": [11],"Eat": [6],"Commute": [4],"Sleep": [3]}
Need to add these items to a jQuery array.
I've attempted using JSON.parse
without success.
Typically, I can push parameters as follows:
MyArr.push(['Task','Hours per Day']);
MyArr.push(['Work','11']);
MyArr.push(['Eat','6']);
Is there a way to achieve the same with the JSON string?