Skip to content
Snippets Groups Projects
Commit e0845fb3 authored by Ali Asaria's avatar Ali Asaria
Browse files

remove console.log in logs

parent 5689ed6f
Branches
Tags
No related merge requests found
......@@ -26,13 +26,6 @@ function isToday(someDateString) {
const someDate = new Date(someDateString);
const today = new Date();
const t =
someDate.getDate() === today.getDate() &&
someDate.getMonth() === today.getMonth() &&
someDate.getFullYear() === today.getFullYear();
console.log(t);
console.log(someDate + ' - ' + today);
return (
someDate.getDate() === today.getDate() &&
someDate.getMonth() === today.getMonth() &&
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment