getMinutes() 0-9 - How to display two digit numbers?

后端 未结 21 1479
南笙
南笙 2020-12-01 00:42
var date = \"2012-01-18T16:03\";
var date = new Date(date);

console.log(date.getMinutes());
console.log(date.getMinutes().length)

This returns 3.

21条回答
  •  情歌与酒
    2020-12-01 01:11

    If you're using AngularJS in your project, just inject $filter and use it like here:

    $filter('date')(value, 'HH:mm')
    

    You can also format the output in the template, more on filters here.

提交回复
热议问题