What I'm trying to do is to add 50 minutes to the current date I get, so I want to get the date and then get the time and then add 50 minutes. I want to check if I'm doing it the right way:
d = new Date();
dateAfter50min = d.setDate(d.getMinutes() + 50);