make minutes have 0 in javascript

JavaScript
String(date.getMinutes()).padStart(2, "0");

sets expected result as having two digits, if one is missing replace it with 0;
mins = ('0'+current_date.getMinutes()).slice(-2);
Source

Also in JavaScript: