Answers for "get current date javascipt"

17

return current date in javascript

let today = new Date().toLocaleDateString()

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

current date in javascript

var today = new Date();
    var date = today.getFullYear()+'-'+(today.getMonth()+1)+'-'+today.getDate();
    console.log(date)
// output 2021-7-9
Posted by: Guest on July-09-2021
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

Code answers related to "Javascript"

Browse Popular Code Answers by Language