Skip to content

Instantly share code, notes, and snippets.

@tolumide-ng
Created April 30, 2020 12:51
Show Gist options
  • Save tolumide-ng/98ba4e75d4f168f1fd3fdab41bffb25e to your computer and use it in GitHub Desktop.
Save tolumide-ng/98ba4e75d4f168f1fd3fdab41bffb25e to your computer and use it in GitHub Desktop.
Simple function to generate time by hours in AM/PM
dayTime() {
const differentTimes = [];
const timePeriods = ['AM', 'PM'];
for (let j = 0; j < timePeriods.length; j++){
for (let i = 1; i <= 12; i++){
const theTime = `${i}:00 ${timePeriods[j]}`
differentTimes.push(theTime)
}
}
console.log('the time periods>>>>>>>', differentTimes)
return differentTimes
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment