Original Question: How do I get the hour/month to respect a '2-digit' formatting.
const event = new Date(2012, 3, 20, 3, 0, 0);
Edit... Apologies all, I don't use this very often
The real issue is depending on which version of chrome you are on, it respects this formatting differently:
For example:
new Date(1561984526000).toLocaleString("ja-JP", {hour: "2-digit"})
// Chrome 80 (and other releases): "08時"
// Chrome 79: "8時"
Original Question: How do I get the hour/month to respect a '2-digit' formatting.
const event = new Date(2012, 3, 20, 3, 0, 0);
Edit... Apologies all, I don't use this very often
The real issue is depending on which version of chrome you are on, it respects this formatting differently:
For example:
new Date(1561984526000).toLocaleString("ja-JP", {hour: "2-digit"})
// Chrome 80 (and other releases): "08時"
// Chrome 79: "8時"
Share
Improve this question
edited Feb 14, 2020 at 18:37
ChrisBurns
asked Feb 14, 2020 at 17:26
ChrisBurnsChrisBurns
3191 gold badge2 silver badges11 bronze badges
4
- Related: How to get correct output of hour: “2-digit” for toLocaleString(“en-US”) with AM/PM? – Tyler Roper Commented Feb 14, 2020 at 17:30
-
Maybe consider another method of testing your date formatting? MDN has a section for
toLocaleString
on reasons to avoid paring formatted date values to static values with this method. – chazsolo Commented Feb 14, 2020 at 17:34 - Hi, in your edit you destroyed your original question. Please restore the question so it makes sense in entirety. (You can append.) Thanks. – Matt Johnson-Pint Commented Feb 14, 2020 at 18:25
- Also, now you seem to be asking the opposite - why it wasn't doing 2-digit before and now it is? Probably a bug that was fixed. – Matt Johnson-Pint Commented Feb 14, 2020 at 18:27
2 Answers
Reset to default 6this is because you forget to add hour12:false
const myDate = new Date(2012, 3, 20, 3, 0, 0)
, dateOpt = { month: '2-digit', hour: '2-digit', hour12:false }
console.log( myDate.toLocaleString(dateOpt) ); // 20/04/2012 à 03:00:00
// or
console.log( myDate.toLocaleString('en-US',dateOpt) ); // 04, 03
Personally I never trust in toLocaleString function, I prefer to use getMonth
and lpad
to formatting a date manually.
Another advantage is that you don't depend on anything to do it
function lpad (strModify, intMaxPad)
{
if (typeof strModify == 'undefined')
{
return false;
}
strModify = strModify.toString();
return strModify.length < intMaxPad ? lpad("0" + strModify, intMaxPad) : strModify;
}
$(function(){
var objDate = new Date(2012, 3, 20, 3, 0, 0);
console.log( lpad((objDate.getMonth() + 1), 2) + '/' + lpad(objDate.getDate(), 2) + '/' + objDate.getFullYear() );
});
You can also use the Moment Luxon library