How to Generate a Timestamp in JavaScript
Topic: JavaScript / jQueryPrev|Next
Answer: Use the Date.now()
Method
You can simply use the JavaScript Date.now()
method to generate the UTC timestamp in milliseconds (which is the number of milliseconds since midnight Jan 1, 1970).
The following example demonstrates how to get a timestamp and how to convert it back to the human-readable date and time format in JavaScript.
Example
Try this code »<script>
// Creating a timestamp
var timestamp = Date.now();
console.log(timestamp);
// Converting it back to human-readable date and time
var d = new Date(timestamp);
console.log(d);
</script>
The Date.now()
method is supported in all major web browsers. See the tutorial on JavaScript date and time to learn more about date and time formatting in JavaScript.
Related FAQ
Here are some more FAQ related to this topic: