Created
April 30, 2020 12:51
-
-
Save tolumide-ng/98ba4e75d4f168f1fd3fdab41bffb25e to your computer and use it in GitHub Desktop.
Simple function to generate time by hours in AM/PM
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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