JavaScript obtient le dernier jour du mois

var today = new Date();
var lastDayOfMonth = new Date(today.getFullYear(), today.getMonth()+1, 0);
Mysterious Mantis