This article describes the method of outputting the current time Unix timestamp by JavaScript. Share it for your reference. The details are as follows:
The following code returns the unix timestamp through the getTime() of the Date object, that is, the number of seconds from January 1, 1970 to the current time.
<!DOCTYPE html> <html> <body> <p > Click the button to display the number of milliseconds since midnight, January 1, 1970.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { var d = new Date(); var x = ("demo"); =(); } </script> </body> </html>
PS: Regarding Unix timestamp operation, here I recommend a Unix timestamp conversion tool for this website, which also comes with Unix timestamp operation methods for various languages (Python/PHP/Java/MySQL, etc.):
Unix timestamp conversion tool:http://tools./code/unixtime
I hope this article will be helpful to everyone's JavaScript programming.