How can I separate each key and value into individual arrays?
Here is the current data:
var inputArray = {
"3/10/2017": 52,
"3/11/2017": 58,
"3/12/2017": 70,
"3/13/2017": 76
}
The desired output should be:
var outputArray = [
["3/10/2017", 52],
["3/11/2017", 58],
["3/12/2017", 70],
["3/13/2017", 76]
]
Thank you!