showing results for - "how to get datetime javascript now"
Giacomo
20 Sep 2017
1var currentdate = new Date();
2var datetime = "Last Sync: " + currentdate.getDay() + "/" + currentdate.getMonth() 
3+ "/" + currentdate.getFullYear() + " @ " 
4+ currentdate.getHours() + ":" 
5+ currentdate.getMinutes() + ":" + currentdate.getSeconds();
6