「JavaScript」 Date.getSeconds()で日時の秒を返す

2020年10月17日

説明
getSeconds() メソッドは、地方時に基づき、指定した日時の「秒」を返します。
サンプルコード
var cftA = new Date('July 21, 20 10:10:09’);
console.log(cftA.getSeconds());

var cftB = new Date('July 25, 19 5:12:18’);
console.log(cftB.getSeconds());
結果
9
18

JavaScript

Posted by arkgame