I have some friends' birthdays and want to separate them as follows :
- birthdays which fall within the current week (within remaining days of current week starting from current day).
- birthdays which fall within the current month (within remaining days of current month starting from current day).
- birthdays which fall within the next month.
So all I want to know how to test each date in javascript to see if it falls within the remaining days of the current week/current month/next month.
N.B: say I have those dates in m/d/Y(06/29/1990) format.
Thanks