Answers for "js to get todays date"

40

return current date in javascript

let today = new Date().toLocaleDateString()

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

get today's date javascript

var today = new Date();

var date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate();
Posted by: Guest on August-09-2021
10

get today's date javascript

var today = new Date();
Posted by: Guest on December-04-2019

Code answers related to "Javascript"

Browse Popular Code Answers by Language