手機怎么建圖片文件夾 紅米手機怎么建圖片文件夾
2023-06-04
更新時間:2023-05-28 00:06:15作者:佚名
這些合集每一個都短小精湛,但是每一個都非常實用,小伙伴們可以直接登錄作者的網(wǎng)站進行需要代碼片段的搜索,也可以逐個根據(jù)開源的內(nèi)容進行學習提升。
以addWeekDays為例,就是我們比較常用的計算工作日,文中會簡單的介紹主要使用的方法及理論。
然后會將示例代碼及如何使用展示給大家:
const addWeekDays = (startDate, count) =>
Array.from({ length: count }).reduce(date => {
date = new Date(date.setDate(date.getDate() + 1));
if (date.getDay() % 6 === 0)
date = new Date(date.setDate(date.getDate() + (date.getDay() / 6 + 1)));
return date;
}, startDate);
addWeekDays(new Date('Oct 09, 2020'), 5); // 'Oct 16, 2020'
addWeekDays(new Date('Oct 12, 2020'), 5); // 'Oct 19, 2020'