Skip to content

Instantly share code, notes, and snippets.

@npearce
npearce / sort_array_of_JSON_objects.js
Last active June 26, 2024 15:50
Sort Array of JSON Object by date values
// Sort array of JSON objects by date value
const records = [
{
order_id: 12345,
order_date: "2020-03-23"
},
{
order_id: 12346,
order_date: "2020-03-20"
},