- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Difference between two times using Dayjs JavaScript library?
Let’s say the following are our time data −
var startHour = dayjs().hour(10) var endHour = dayjs().hour(22)
To get the difference, use the diff() method −
Example
Following is the code −
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.8.20/dayjs.min.js"></script> <script> var startHour = dayjs().hour(10) var endHour = dayjs().hour(22) console.log("The hours difference is=" + endHour.diff(startHour, "hours")); </script> </html>
To run the above program, save the file name anyName.html(index.html). Right click on the file and select the option “Open with live server” in VS Code editor −
Output
The output is as follows −
- Related Articles
- Difference between two strings JavaScript
- Difference between Header file and Library
- How to calculate time difference between two times or dates?
- Finding the difference between two arrays - JavaScript
- Golang Program to Display Prime Numbers Between Two Intervals using library functions.
- Find the Symmetric difference between two arrays - JavaScript
- How to calculate the absolute difference between two values/times in Excel?
- Difference between .extend() / .assign() and .merge() in Lodash library.
- How to get the difference between two arrays in JavaScript?
- How to calculate the difference between two dates in JavaScript?
- How to compare two images using Java OpenCV library?
- Get the property of the difference between two objects in JavaScript
- What's the difference between "STL" and "C++ Standard Library"?
- Add number strings without using conversion library methods in JavaScript
- The difference between two numbers is 26 and one number is three times the other. Find them.

Advertisements