Q

javascriptで時刻を取得する方法を教えてください

javascriptを使って時刻を取得する方法がわかりません。
自分で調べてみて、new Date();を使うことはわかったのですが・・・

A

回答者 青い空と白い雲 さん
基本的に以下のような感じになります。
let now = new Date(); //現在時刻
let year = now.getYear(); //年
let month = now.getMonth() + 1; //月
let day = now.getDate(); //日
let hour = now.getHours(); //時
let min = now.getMinutes(); //分
let sec = now.getSeconds(); //秒