Skip to content

Instantly share code, notes, and snippets.

@Poxios
Created August 10, 2022 10:30
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 Poxios/7ba5a96e3e0110959a98efe46d9168ad to your computer and use it in GitHub Desktop.
Save Poxios/7ba5a96e3e0110959a98efe46d9168ad to your computer and use it in GitHub Desktop.
자바스크립트 오전 오후 뽑아내기
export const getAMPMTimeFromDate = (date: Date) => {
let hours = date.getHours();
let minutes = date.getMinutes() as any;
let ampm = hours >= 12 ? '오후' : '오전';
hours = hours % 12;
hours = hours ? hours : 12;
minutes = minutes.toString().padStart(2, '0');
let strTime = ampm + ' ' + hours + ':' + minutes;
return strTime;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment