Skip to content

Instantly share code, notes, and snippets.

@forberg
Created June 13, 2019 19:36
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 forberg/51db842b26ef7d207aef2921cbde710e to your computer and use it in GitHub Desktop.
Save forberg/51db842b26ef7d207aef2921cbde710e to your computer and use it in GitHub Desktop.
const json = require('./frd.json');
const {
appointments,
timeslots,
} = json;
appointments.forEach(({ start, end }) => console.log(start, end));
timeslots.forEach(({ start, end }) => console.log(start, end));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment