programming-examples/js/Date/Write a JavaScript function to get seconds with leading zeros (00 through 59)..js
2019-11-15 12:59:38 +01:00

10 lines
275 B
JavaScript

function seconds_with_leading_zeros(dt)
{
return (dt.getMinutes() < 10 ? '0' : '') + dt.getMinutes();
}
dt = new Date();
console.log(seconds_with_leading_zeros(dt));
dt = new Date(1989, 10, 1);
console.log(seconds_with_leading_zeros(dt));