JavaScript gets the code for the current timestamp

Source: Internet
Author: User

JavaScript gets the current timestamp:
The first method:

var timestamp = date.parse (new Date ());

Results: 1280977330000
The second method:

var timestamp = (new Date ()). ValueOf ();

Results: 1280977330748

The above code gets the number of milliseconds that start at midnight on January 1, 1970. The difference between the two is that the first method has an all-zero millisecond, which is just the number of milliseconds that are accurate to seconds

As shown in title, returns the specific time that the Unix timestamp corresponds to:


var time = ' 1278927966 ';
The key is multiplied by 1000, since the time is relative to the beginning of 1970, so 1000 will be transferred to the current time.
var real_time = new Date (time) * 1000;
document.write (Real_time);

JavaScript gets the code for the current timestamp

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.