var one_hour = 60 * 60 * 1000; // ms
let d = new Date(2020, 5,20, 10, 42, 33);
console.log(d);
d = new Date(d.getTime() + one_hour)
console.log(d);
/*
run:
Sat Jun 20 2020 10:42:33 GMT+0300 (Israel Daylight Time)
Sat Jun 20 2020 11:42:33 GMT+0300 (Israel Daylight Time)
*/