I\'d like to get a Date object which is 30 minutes later than another Date object. How do I do it with JavaScript?
var now = new Date(); now.setMinutes(now.getMinutes() + 30); // timestamp now = new Date(now); // Date object console.log(now);