JavaScriptでyyyy-mm-dd hh:mm:ss形式で日付をフォーマットする方法
Dateオブジェクトとパディング関数を使用する方法:function formatDate(date) { const pad = (num) => { return num < 10 ? '0' + num : num; }; const year = date.getFullYear(); const month = pad(date.getMonth() + 1); const day = pad(date.getDate()); const hours = pad(date.getHours()); const minutes = pad(date.getMinutes()>>More