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