admin管理员组文章数量:1344927
I'm trying to figure out how to check if a specific DateTime is within a time interval. For example, let's say I have a variable named dateTimeToCheck
and I want to see if it is within the first quarter of the year (Jan 1st to March 31st).
I could use diff
between dateTimeToCheck
and Jan 1st and then diff
between dateTimeToCheck
and March 31st followed by some calculations, but I feel like there should be a cleaner way using Luxon's Interval
or something like that.
Any help is very much appreciated!
I'm trying to figure out how to check if a specific DateTime is within a time interval. For example, let's say I have a variable named dateTimeToCheck
and I want to see if it is within the first quarter of the year (Jan 1st to March 31st).
I could use diff
between dateTimeToCheck
and Jan 1st and then diff
between dateTimeToCheck
and March 31st followed by some calculations, but I feel like there should be a cleaner way using Luxon's Interval
or something like that.
Any help is very much appreciated!
Share Improve this question asked Jan 30, 2023 at 22:41 risingTiderisingTide 1,8969 gold badges38 silver badges65 bronze badges1 Answer
Reset to default 12Yes, you can use Luxon's Interval
. The API has the contains
method that:
Return whether this Interval contains the specified DateTime.
Here an example where I've used fromDateTimes
to create Interval
object:
const DateTime = luxon.DateTime;
const Interval = luxon.Interval;
const interval = Interval.fromDateTimes(DateTime.local(2023, 1, 1), DateTime.local(2023, 3, 31));
let dateTimeToCheck = DateTime.now();
console.log(interval.contains(dateTimeToCheck));
<script src="https://cdn.jsdelivr/npm/[email protected]/build/global/luxon.min.js"></script>
本文标签: javascriptDetermine if a specific DateTime is within a time interval using LuxonStack Overflow
版权声明:本文标题:javascript - Determine if a specific DateTime is within a time interval using Luxon - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768679a2535718.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论