JavaScript code for getting the current Timestamp

Source: Internet
Author: User

JavaScript to get the current timestamp:
Method 1: CopyCodeThe Code is as follows: var timestamp = date. parse (new date ());

Result: 1280977330000
Method 2:Copy codeThe Code is as follows: var timestamp = (new date (). valueof ();

Result: 1280977330748

The above code gets the number of milliseconds that have elapsed since midnight, January 1, January 1, 1970. The difference between the two is that, in the first method, the millisecond bit is zero, that is, only the number of milliseconds accurate to the second

As shown in the following figure, the specific time corresponding to the Unix timestamp is returned:Copy codeThe Code is as follows: var time = '20140901 ';
// The key is to multiply by 1000, because the time is relative to the start of 1970, so after multiply by 1000, it will be converted to the current time.
VaR real_time = new date (time) * 1000;
Document. Write (real_time );

The code is easy to convert the timestamp.

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.