We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
플랫폼간 자바스크립트의 new Date()를 처리하는 방식이 다르다.
new Date()
const dateText = '2020-07-01' new Date(`${dateText}+09:00`)
Date.now()
new Date(Date.now())
The text was updated successfully, but these errors were encountered:
// safari new Date("2019-03-15"); new Date("2019-3-15"); // safari error!
Sorry, something went wrong.
No branches or pull requests
현상
플랫폼간 자바스크립트의
new Date()
를 처리하는 방식이 다르다.해결
1. Timezome을 함께 붙인다.
2.
Date.now()
를 사용한다.The text was updated successfully, but these errors were encountered: