Use .getMinutes() to get the current minutes, then add 20 and use .setMinutes() to update the date object.
var twentyMinutesLater = new Date();
twentyMinutesLater.setMinutes(twentyMinutesLater.getMinutes() + 20);
Use .getMinutes() to get the current minutes, then add 20 and use .setMinutes() to update the date object.
var twentyMinutesLater = new Date();
twentyMinutesLater.setMinutes(twentyMinutesLater.getMinutes() + 20);