Skip to content

Instantly share code, notes, and snippets.

@motsu0
Created January 30, 2020 13:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save motsu0/962ffb2d7e50c921bb2a1d2a6dcd6da7 to your computer and use it in GitHub Desktop.
Save motsu0/962ffb2d7e50c921bb2a1d2a6dcd6da7 to your computer and use it in GitHub Desktop.
Date object
const date = new Date(); //現在の日時よりDateオブジェクトを生成
const yyyy = date.getFullYear(); //年
const MM = date.getMonth()+1; //月
const dd = date.getDate(); //日
const hh = date.getHours(); //時
const mm = date.getMinutes(); //分
const dow_list = ['日','月','火','水','木','金','土'];
const dow = dow_list[date.getDay()]; //曜日
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment