「JavaScript」Date.getDate()で日付を返すサンプル
説明
getDate() メソッドは、地方時に基づき、指定された日付の「日」を返します。
JSコード
const dt = new Date('August 20, 2020 23:15:30’);
const res = dt.getDate();
console.log(res);
結果
20
Coding Changes the World
説明
getDate() メソッドは、地方時に基づき、指定された日付の「日」を返します。
JSコード
const dt = new Date('August 20, 2020 23:15:30’);
const res = dt.getDate();
console.log(res);
結果
20