When studying 1. Conventional ideas for time formattingThe normal idea is to get the year, month, day, etc. in sequence through the Date instance, such as a simple formatting example: Date.prototype.format = function(dateStr) { let date = new Date(); let year = date.getFullYear(); let month = date.getMonth() + 1; let day = date.getDate().toString().padStart(2, "0"); let hour = date.getHours(); let minute = date.getMinutes(); let second = date.getSeconds(); dateStr = dateStr.replace("年", year) .replace("月", month) .replace("日", day) .replace("hour", hour) .replace("minute", minute) .replace("秒", second); return dateStr; }; // Using the above method console.log(new Date().format("year-month-day")); // 2021-11-04 2. Time formatting toLocaleString() // Date, output current time let date = new Date(); // This is Greenwich Mean Time format console.log(date.toString()); // Thu Nov 04 2021 10:11:35 GMT+0800 (China Standard Time) // This is the local time format console.log(date.toLocaleString()); // 2021/11/4 10:18:08 AM New browser versions can support locales and options parameters: let date = new Date(); // 24-hour system let options = { year: 'numeric', month: 'numeric', day: 'numeric', hour: 'numeric', minute: 'numeric', second: 'numeric', hour12: false }; console.log(date.toLocaleString("zh-CN", options)); // 2021/11/4 10:33:01 Get the day of the week: let date = new Date(); let options = { weekday: "long" }; console.log(date.toLocaleString("zh-CN", options)); // Thursday For more
This concludes this article about the new idea of time formatting in You may also be interested in:
|
<<: The difference between html empty link href="#" and href="javascript:void(0)"
>>: Analysis of three parameters of MySQL replication problem
wedge Because the MySQL version installed on the ...
After installing the latest Windows 10 update, I ...
Underlining in HTML used to be a matter of enclos...
1. Introduction to mysqldump mysqldump is a logic...
Table of contents 1. MySQL replication related co...
WeChat applet's simple calculator is for your...
<br />Original text: http://www.mikkolee.com...
I haven't written a blog for a long time. Las...
This article introduces the sample code for imple...
In Ubuntu, you often encounter the situation wher...
The react version when writing this article is 16...
Table of contents What is cgroup Composition of c...
Table of contents Updatable Views Performance of ...
Table of contents 1. js statement Second, js arra...
Table of contents Causes of MySQL Table Fragmenta...