ロゴマーク画像です

日付

時間

日付と時間のチートシート

サンプル

00:00:00

コードをコピー
const d = new Date();
const year = d.getFullYear();
const month = d.getMonth();
const date = d.getDate();
let day = d.getDay();
result.textContent = `${year}年${month+1}月${date}日`;