fork download
  1. let date = new Date(2022, 10, 3, 12, 38); // 2022-11-03T12:38:00.000Z
  2.  
  3. Date.prototype.addHours = function (H) {
  4. this.setHours(this.getHours() + H);
  5. };
  6.  
  7. date.addHours(4);
  8. console.log(date); // 2022-11-03T16:38:00.000Z
  9.  
Success #stdin #stdout 0.09s 32276KB
stdin
Standard input is empty
stdout
2022-11-03T16:38:00.000Z