I have a JS string like this (got from AJAX API call)
{"Task":"Hours per Day","Slep":22,"Work":25,"Watch TV":15,"Commute":4,"Eat":7,"Bathroom":17}
I want to convert it into this format-
[["Task", "Hours per Day"], ["Work", 11], ["Eat", 2], ["Commute", 2], ["Watch TV", 2], ["Sleep", 7]]
With the help of JS and jQuery.
Is there any way?