Skip to content

Instantly share code, notes, and snippets.

@nathanqueija
Created June 22, 2019 15:27
Show Gist options
  • Save nathanqueija/736d7362890e60913dbcae04865dcbdd to your computer and use it in GitHub Desktop.
Save nathanqueija/736d7362890e60913dbcae04865dcbdd to your computer and use it in GitHub Desktop.
Horas do dia
const horarios = Array.from({length: 48}).map((v,i) => {
const d = new Date();
d.setUTCHours(0,0,0,0);
d.setMinutes(d.getMinutes() + (30 * i));
return d.toISOString().substr(11, 5);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment