Today I recommend a library Day.js to everyone, which can help us deal with dates in JavaScript, because the dates in JavaScript are too difficult to use. It is completely unusable when doing business development, and you need to encapsulate various functions yourself. Why use day.js First of all, using day.js can help us more easily handle dates and times in JavaScript. Moment.jsClick here to view size Day.jsClick here to view size It is very lightweight because it can use TreeShaking and be extended through plug-ins. We can introduce plug-ins according to our needs, so we will only introduce what we need in the end. What would we do without day.js? In native JavaScript, we need to get the current date like this const today = new Date(); const dd = String(today.getDate()).padStart(2, '0'); // day const mm = String(today.getMonth() + 1).padStart(2, '0'); // month const yyyy = today.getFullYear(); // year const curDate = `${yyyy}-${mm}-${dd}` console.log(curDate) // Output: 2021-09-17 In day.js, we only need this, of course, it supports more than that, and many other functions. import dayjs from "dayjs"; const curDate = dayjs().format('YYYY-MM-DD'); console.log(curDate) // Output: 2021-09-17 Day.js Example Now let's look at some practical and interesting examples that are simpler and more readable than the native API. 1. Get the number of days between two dates View Documentation import dayjs from "dayjs"; // The second parameter is specified as 'day', which means the granularity is day.dayjs(new Date(2021, 10, 1)).diff(new Date(2021, 9, 17), "day"); // Output: 15 2. Check if the date is valid View Documentation import dayjs from "dayjs"; dayjs("20").isValid(); // Output: false dayjs("2021-09-17").isValid(); // Output: true 3. Get the number of days in the month of the input date View Documentation import dayjs from "dayjs"; dayjs("2021-09-13").daysInMonth() // Output: 30 4. Add day, month, year, hour, minute, second View Documentation import dayjs from "dayjs"; dayjs("2021-09-17 08:10:00").add(20, "minute").format('YYYY-MM-DD HH:mm:ss') // Output: 2021-09-17 08:30:00 5. Subtract days, months, years, hours, minutes, and seconds View Documentation import dayjs from "dayjs"; dayjs("2021-09-17 08:10:00").subtract(20, "minute").format('YYYY-MM-DD HH:mm:ss') // Output: 2021-09-17 07:50:00 Use plugins to extend functionality 1. RelativeTime View Documentation Get the time difference from the specified time to now. import dayjs from "dayjs"; import relativeTime from "dayjs/plugin/relativeTime"; dayjs.extend(relativeTime); dayjs("2021-09-16 13:28:55").fromNow(); // Output: 9 hours ago Below is all the output tables
2. WeekOfYear View Documentation Get the week number of the specified date in the year import dayjs from "dayjs"; import weekOfYear from "dayjs/plugin/weekOfYear"; dayjs.extend(weekOfYear); dayjs("2021-09-13 14:00:00").week(); // Output: 38 3. IsSameOrAfter View Documentation Checks if a date is equal to or greater than a date import dayjs from "dayjs"; import isSameOrAfter from "dayjs/plugin/isSameOrAfter"; dayjs.extend(isSameOrAfter); dayjs("2021-09-17").isSameOrAfter("2021-09-16"); // Output: true 4. MinMax View Documentation Get the largest or smallest date in an array import dayjs from "dayjs"; import minMax from "dayjs/plugin/minMax"; dayjs.extend(minMax) const maxDate = dayjs.max([ dayjs("2021-09-13"), dayjs("2021-09-16"), dayjs("2021-09-20") ]) const minDate = dayjs.min([ dayjs("2021-09-13"), dayjs("2021-09-16"), dayjs("2021-09-20") ]) maxDate.format('YYYY-MM-DD HH:mm:ss') // Output: 2021-09-20 00:00:00 minDate.format('YYYY-MM-DD HH:mm:ss') // Output: 2021-09-13 00:00:00 5. IsBetween View Documentation Checks whether a specified date is within a specified date range import dayjs from "dayjs"; import isBetween from "dayjs/plugin/isBetween"; dayjs.extend(isBetween); // Use day as the granularity for comparison dayjs("2010-10-21").isBetween(dayjs("2010-10-20"), dayjs("2010-10-25"), "day"); // Output: true // Use year as the granularity for comparison dayjs("2010-10-21").isBetween(dayjs("2010-10-20"), dayjs("2010-10-25"), "year"); // Output: false This concludes this article on more elegant date processing in JavaScript based on Day.js. For more information about date processing with Day.js, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: In-depth analysis of why MySQL does not recommend using uuid or snowflake id as primary key
>>: How to use gdb to debug core files in Linux
As the computer is used, a lot of garbage will be...
A few months after entering the industry in 2005, ...
There are two common ways to download files in da...
There are two types of html tags, inline elements...
Preface: Basically, whether it is for our own use...
First check the kernel version you are using lin@...
Set Tomcat to automatically start the service: I ...
Table of contents 1. Introduction 2. Prepare a pr...
Lambda Expressions Lambda expressions, also known...
1. Computed properties and listeners 1.1 Computed...
The installation tutorial of mysql 5.7.19 winx64 ...
What are Routing and Routing Table in Linux? The ...
1. Scroll Snap is a must-have skill for front-end...
This article shares the specific code for JavaScr...
Table of contents question 1. Install webpack web...