“Fecha Agregar horas 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

jQuery consigue 2 horas frmo ahora

<html>
   <head>
      <title>JavaScript setHours Method</title>
   </head>
   <body>
      <script>
         var dt = new Date();
         dt.setHours( dt.getHours() + 2 );
         document.write( dt );
      </script>
   </body>
</html>
Disgusted Dotterel

Respuestas similares a “Fecha Agregar horas JavaScript”

Preguntas similares a “Fecha Agregar horas JavaScript”

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

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código