본문 바로가기
카테고리 없음

두 날짜 사이에 경과된 시간 백분율 표기

by Stella-Park 2023. 8. 21.
728x90
const start = new Date(2015,0,3)
const end = new Date(2024,0,12)
const today = new Date()

console.log(`percent: ${Math.round(((end - start) * 100 ) / today)}%`)
728x90