I\'d like to get a Date object which is 30 minutes later than another Date object. How do I do it with JavaScript?
Here is the IsoString version:
console.log(new Date(new Date().setMinutes(new Date().getMinutes() - (30))).toISOString());