You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 현재 시간 : PC 설정된 시간 대 기준 표시constcurr=newDate()console.log(curr)// 현재 PC 설정 시간대로부터 UTC 시간까지 차이 => 분 단위로 반환 => 밀리초 단위 변환constoffset=newDate().getTimezoneOffset()*60*1000//1970년 1월1 일 00:00:00 UTC'로부터 주어진 시간 사이의 경과 => 밀리초 단위 반환constdateStartOffset=curr.getTime()// 현재 시간을 UTC 시간으로 변환한 밀리초constUTC=offset+dateStartOffset// KST (한국 시간)은 UTC보다 9시간 빠름 => 9시간을 밀리초로 변환constKR_UTC_DIFF=9*60*60*1000// UTC 시간에 한국 시간 차이를 더해 KST로 변환constKR_CURR=newDate(UTC+KR_UTC_DIFF)console.log(KR_CURR)```
https://hianna.tistory.com/451
The text was updated successfully, but these errors were encountered: