Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created March 31, 2019 09:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lydemann/e3d8bbcafba01f34b7dce6d392a34d22 to your computer and use it in GitHub Desktop.
Save lydemann/e3d8bbcafba01f34b7dce6d392a34d22 to your computer and use it in GitHub Desktop.
todo-list.component.ts
public getDuedateTodayCount(todoItems: TODOItem[]) {
console.log('Called getDuedateTodayCount');
return todoItems.filter((todo) => this.isToday(new Date(todo.dueDate))).length;
}
private isToday(someDate) {
const today = new Date();
return (
someDate.getDate() == today.getDate() &&
someDate.getMonth() == today.getMonth() &&
someDate.getFullYear() == today.getFullYear()
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment