Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created April 28, 2018 21:23
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 dance2die/3c24269621d3314d4693c9ad3b642ce2 to your computer and use it in GitHub Desktop.
Save dance2die/3c24269621d3314d4693c9ad3b642ce2 to your computer and use it in GitHub Desktop.
function allDemo(orders) {
const areAllOrdersPlacedOn2018 = orders.every(
order => order.orderDate.getFullYear() === 2018
);
WriteLine(`Are All Orders Placed On 2018?: ${areAllOrdersPlacedOn2018}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment