In this Article we will go through how to check if a date is today only using single line of code in JavaScript.
This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function
.
Let's define this short function:
const isToday = (date) => date.toISOString().slice(0, 10) === new Date().toISOString().slice(0, 10);
Parameters date
is a Date object.