How can I obtain the last day of the month with the timestamp being 11:59:59 PM?
Last day of the month
now = new Date lastDayOfTheMonth = new Date(1900+now.getYear(), now.getMonth()+1, 0)