js取得現在の日付は1年の日付です
349 ワード
js取得現在の日付が1年の数日目
const currentYear = new Date().getFullYear().toString();
// (xxxx 01 01 )
const hasTimestamp = new Date() - new Date(currentYear);
// 86400000 = 24 * 60 * 60 * 1000
const hasDays = Math.ceil(hasTimestamp / 86400000) + 1;
console.log(' %s %s ', currentYear, hasDays);
// : 2018 329