Answers for "get today's time in js"

17

return current date in javascript

let today = new Date().toLocaleDateString()

console.log(today)
Posted by: Guest on March-01-2020
1

get today's date in js

let today = new Date().toISOString().slice(0, 10)

console.log(today)
Posted by: Guest on March-19-2021

Code answers related to "get today's time in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language