Answers for "javascript function add one Hours to timestamp"

0

date add 1 hour javascript

//JS
function addHoursToDate(date, hours) {
  return new Date(new Date(date).setHours(date.getHours() + hours));
}

//TS
function addHoursToDate(date: Date, hours: number): Date {
  return new Date(new Date(date).setHours(date.getHours() + hours));
}

let myDate = new Date();

console.log(myDate)
console.log(addHoursToDate(myDate,2))
Posted by: Guest on April-20-2021
0

add 2 for hours in date timestamp js

Date.prototype.addHours= function(h){
    this.setHours(this.getHours()+h);
    return this;
}

alert(new Date().addHours(4));
Posted by: Guest on September-22-2020

Code answers related to "javascript function add one Hours to timestamp"

Code answers related to "Javascript"

Browse Popular Code Answers by Language