Last active
June 25, 2019 01:00
-
-
Save dstyle0210/866bd3692733fc84eb23aba9b1a5eef4 to your computer and use it in GitHub Desktop.
날짜구하기 Date prototype format
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
| // 출처: https://stove99.tistory.com/46 [스토브 훌로구] | |
| String.prototype.string = function(len){var s = '', i = 0; while (i++ < len) { s += this; } return s;}; | |
| String.prototype.zf = function(len){return "0".string(len - this.length) + this;}; | |
| Number.prototype.zf = function(len){return this.toString().zf(len);}; | |
| Date.prototype.format = function(f) { | |
| if (!this.valueOf()) return " "; | |
| var weekName = ["일요일", "월요일", "화요일", "수요일", "목요일", "금요일", "토요일"]; | |
| var d = this; | |
| return f.replace(/(yyyy|yy|MM|dd|E|hh|mm|ss|a\/p)/gi, function($1) { | |
| switch ($1) { | |
| case "yyyy": return d.getFullYear(); | |
| case "yy": return (d.getFullYear() % 1000).zf(2); | |
| case "MM": return (d.getMonth() + 1).zf(2); | |
| case "dd": return d.getDate().zf(2); | |
| case "E": return weekName[d.getDay()]; | |
| case "HH": return d.getHours().zf(2); | |
| case "hh": return ((h = d.getHours() % 12) ? h : 12).zf(2); | |
| case "mm": return d.getMinutes().zf(2); | |
| case "ss": return d.getSeconds().zf(2); | |
| case "a/p": return d.getHours() < 12 ? "오전" : "오후"; | |
| default: return $1; | |
| } | |
| }); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment