I have a nested array like the following:
data = [
[Date.UTC(2013, 1, 1), 1],
[Date.UTC(2013, 1, 5), 22],
[Date.UTC(2013, 1, 2), 2],
[Date.UTC(2013, 1, 11), 33]
]
I am using underscore and I am trying to figure out a way to sort it by the Date.UTC so the array shows dates by first to last or lowest to highest ?