Created
July 17, 2018 11:35
-
-
Save hyyan/35fc5dca06a4795e9c90c08c227ce171 to your computer and use it in GitHub Desktop.
Formate date/time in javascript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function format(date, format) { | |
if (!date || !format) { | |
return; | |
} | |
if (format.toLowerCase() === "short") { | |
format = "dd-MM-yyyy"; | |
} | |
if (format.toLowerCase() === "medium") { | |
format = "dd-MM-yyyy hh:mm:ss"; | |
} | |
date = new Date(date); | |
var o = { | |
"M+": date.getMonth() + 1, //month | |
"d+": date.getDate(), //day | |
"h+": date.getHours(), //hour | |
"m+": date.getMinutes(), //minute | |
"s+": date.getSeconds(), //second | |
"q+": Math.floor((date.getMonth() + 3) / 3), //quarter | |
"S": date.getMilliseconds() //millisecond | |
}; | |
if (/(y+)/.test(format)) { | |
format = format.replace( | |
RegExp.$1, | |
(date.getFullYear() + "").substr(4 - RegExp.$1.length) | |
); | |
} | |
for (var k in o) | |
if (new RegExp("(" + k + ")").test(format)) { | |
format = format.replace( | |
RegExp.$1, | |
RegExp.$1.length == 1 ? | |
o[k] : | |
("00" + o[k]).substr(("" + o[k]).length) | |
); | |
} | |
return format; | |
} | |
console.log(format('2018-07-17T09:03:08.819Z', 'yyyy-mm-dd')) | |
console.log(format('2018-07-17T09:03:08.819Z', 'short')) | |
console.log(format('2018-07-17T09:03:08.819Z', 'medium')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment