Skip to content

Instantly share code, notes, and snippets.

@evanxd
Created October 28, 2016 04:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evanxd/02f577805e62dca06f5f7d2dce2d3f27 to your computer and use it in GitHub Desktop.
Save evanxd/02f577805e62dca06f5f7d2dce2d3f27 to your computer and use it in GitHub Desktop.
Sample Code for Querying Data by Date
window.query = (data) => {
return data.filter(function(item) {
return new Date(item.date) > new Date('2016/10/28 11:23:00') &&
new Date(item.date) < new Date('2016/10/28 11:24:00');
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment