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 my one-liner:
console.log('time: ', new Date(new Date().valueOf() + 60000))