JSFiddle - React, Tailwind, and code Playground
by Patrick Gordon
HTML
<script src="https://cdn.jsdelivr.net/lodash/4.5.1/lodash.min.js"></script>
JavaScript
var object = {
"32": {
"attributes": {
"details": "test",
"createdAt": "2016-07-08T04:14:58.216Z"
}
},
"33": {
"attributes": {
"details": "test",
"createdAt": "2016-07-08T04:28:31.473Z"
}
},
"34": {
"attributes": {
"details": "test",
"createdAt": "2016-07-08T04:29:31.473Z"
}
}
}
console.log(object)
var ordered = _.orderBy(_.values(_.omit(object, '32')), function(note) {
return [note.attributes.createdAt]
}, ['desc'])
console.log(ordered)