How to display the time in JavaScript

3 Answers

0 votes
const d = new Date();  
   
console.log(d.getTime());



  
/*
run:
 
1434263609783  
  
*/

 



answered Jun 14, 2015 by avibootz
edited May 26, 2022 by avibootz
0 votes
const d = new Date();  
   
console.log(d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds());



  
/*
run:
 
9:38:12
  
*/

 



answered Jun 14, 2015 by avibootz
edited May 26, 2022 by avibootz
0 votes
const d = new Date();  
   
console.log(d.getHours() +':'+ d.getMinutes() +':'+ d.getSeconds() +':'+ d.getMilliseconds());



  
/*
run:
 
9:38:12:117
  
*/

 



answered Jun 14, 2015 by avibootz
edited May 26, 2022 by avibootz

Related questions

2 answers 221 views
1 answer 141 views
1 answer 213 views
1 answer 233 views
...