Answers for "how to grab the current time in javascript"

19

javascript get current time

var today = new Date();
var time = today.getHours() + ":" + today.getMinutes() + ":" + today.getSeconds();
Posted by: Guest on March-30-2020
1

get current time in javascript

var d = new Date();
var n = d.toLocaleTimeString();
document.getElementById("timer").innnerHTML = n;
Posted by: Guest on April-24-2021

Code answers related to "how to grab the current time in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language