Just starting out with AngularJS and I've got some data that looks like this
{
day1: 0,
day2: 0,
day3: 0,
day4: 2
}
Is there a way to convert this data into arrays structured like below?
[
["day1": 0],
["day2": 0],
["day3": 0],
["day4": 2]
]