JS Time Difference

Source: Internet
Author: User
Tags date1
VaR date1 = new date (); // start time Alert ("AA"); var date2 = new date (); // End Time var date3 = date2.gettime () -date1.gettime () // time difference in milliseconds

// Calculate the number of different days var days = math. Floor (date3/(24*3600*1000 ))

// Calculate the number of hours

VaR leave1 = date3 % (24*3600*1000) // The number of milliseconds remaining after the computing day var hours = math. floor (leave1/(3600*1000) // calculate the number of different minutes var leave2 = leave1 % (3600*1000) // The number of milliseconds remaining after the computing hours var minutes = math. floor (leave2/(60*1000 ))

// Calculate the difference in seconds var leave3 = leave2 % (60*1000) // calculate the remaining milliseconds after the number of minutes var seconds = math. Round (leave3/1000)

Alert ("difference" + days + "days" + hours + "hours" + minutes + "Minutes" + seconds + "seconds ")

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.