Ajouter des jours dans Mome

// to add 5 days to a date 

var new_date = moment().add(5, 'days');
S4N705H