文字列からのパースmoment(text, format)Calendarにはない(DateFormatで代用)DateTime.Parse(text, culture) 年を取得year()get(Calendar.YEAR)Year 月を取得month()※0〜get(Calendar.MONTH)※0〜Month※1〜 日を取得date()get(Calendar.DATE)Day 曜日を取得day()SUN:0〜get(Calendar.DAY_OF_WEEK)S...
例えば時間の場合、日か時間か秒かミリ秒か(それともYYYYMMDDの文字列かDateクラスのインスタンスかMoment.jsのインスタンスか)曖昧になりがちなので、はっきりわかる名前にしてください。 データサイズはバイトかキロバイト[KB]かメガバイト[MB]か、あるいはキビバイト[KiB]かメビバイト...
function time() { var now = new Date() yea = now.getYear(); mon = now.getMonth()+1; day = now.getDate() hou = now.getHours(); min = now.getMinutes(); sec = now.getSeconds() if (hou < 10){ hou = "0" + hou; } if (min < 10){ min = "0" + min; } if(yea ...