i have this json:
module.exports = [
{
"date": "01-2012"
},
{
"date": "12-2011"
},
{
"date": "01-2014"
},
{
"date": "08-2015"
}
];
And i want sort by date, but the problem is that is not a valid format (MM-YYYY), this is possible? Can someone give me a hand here?
Thanks.