欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS判断两个时间戳是否为同一天

程序员文章站 2024-03-20 21:27:10
...
const is_same_day = function(t)
{
	return new Date(t).toDateString() === new Date().toDateString();
}