Answers for "how to get only hour from time in javascript"

0

how to show only time in hours and minutes only in javascript

function prettyDate2(time) {
  var date = new Date(parseInt(time));
  return date.toLocaleTimeString(navigator.language, {
    hour: '2-digit',
    minute:'2-digit'
  });
}
Posted by: Guest on July-24-2020
4

javascript get 1 hour from now

Date.prototype.addHours = function(h) {
  this.setTime(this.getTime() + (h*60*60*1000));
  return this;
}
Posted by: Guest on February-27-2020

Code answers related to "how to get only hour from time in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language