This function utilises the Date object. When the Date.getTime() object instance is created it calls the number of seconds since 1 January 1970 UTC. As we only want the number of seconds (not milliseconds) we divide the result by 1000.
The Math.floor part rounds the number down to the nearest whole number.
function time() {
var timestamp = Math.floor(new Date().getTime() / 1000)
return timestamp;
}
Clive Walkden
Posted:
Latest Articles

Explore the evolution of Magento 2 through its major releases, detailing features added, popularity metrics, and issues encountered.
Author

A simple to follow installation guide for NordLayer VPN
Author

Learn efficient ways to import MySQL databases on Linux using the mysql command-line client. Explore the --source option and < operator for seamless data migration. Master MySQL imports on Linux with our comprehensive guide.
Author