“Fecha Agregar 1 hora JavaScript” Código de respuesta

Fecha Agregar 1 hora 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))
Joyous Jaguar

Fecha Agregar horas JavaScript

Date.prototype.addHours = function(h) {
  this.setTime(this.getTime() + (h*60*60*1000));
  return this;
}
Stormy Skunk

Respuestas similares a “Fecha Agregar 1 hora JavaScript”

Preguntas similares a “Fecha Agregar 1 hora JavaScript”

Más respuestas relacionadas con “Fecha Agregar 1 hora JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código