Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created April 14, 2018 20:55
Show Gist options
  • Select an option

  • Save dance2die/37d6e62df1b39297660d25172618028b to your computer and use it in GitHub Desktop.

Select an option

Save dance2die/37d6e62df1b39297660d25172618028b to your computer and use it in GitHub Desktop.
const orders = [
{ id: 1, quantity: 40, orderDate: new Date(2018, 1, 1, 1, 1, 1) },
{ id: 2, quantity: 20, orderDate: new Date(2018, 2, 2, 2, 2, 2) },
{ id: 3, quantity: 30, orderDate: new Date(2018, 3, 3, 3, 3, 3) },
{ id: 4, quantity: 10, orderDate: new Date(2018, 4, 4, 4, 4, 4) },
{ id: 5, quantity: 20, orderDate: new Date(2018, 5, 5, 5, 5, 5) }
];
const nullOrder = {
id: -1,
quantity: 0,
orderDate: new Date(-8640000000000000)
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment