Answers for "get hours and minutes in minutes"

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
0

js date get hours

const birthday = new Date('March 13, 08 04:20');

console.log(birthday.getHours());
// expected output: 4
Posted by: Guest on November-27-2020

Code answers related to "get hours and minutes in minutes"

Code answers related to "Javascript"

Browse Popular Code Answers by Language