A simple and awesome method:
yourDate.toISOString().split('T')[0]
But be careful! This result based on UTC date and time.
A simple and awesome method:
yourDate.toISOString().split('T')[0]
But be careful! This result based on UTC date and time.
For further actions, you may consider blocking this person and/or reporting abuse
Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.
keploy -
Eric Allard -
sharathchandark -
João Alisson -
Top comments (3)
To get locale date and time, use
new Date().getTimezoneOffset()
in minutes, so it becomesI prefer this
It work, thanks dut