javascript local time only hour and minutes code example
Example: 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'
});
}