[JAVASCRIPT] 날짜 계산 (어제, 내일, 일주일 전, 한달 전...)
PHP 날짜 계산 (어제, 내일, 일주일 전, 한달 전...) JAVASCRIPT 에서도 PHP 처럼 date('Y-m', strtotime($month.' -1 year')); 이런 식으로 날짜를 계산해 보자. function date_calc(ymd, calc) { var date = new Date( ymd.substring(0, 4), ymd.substring(5, 7), ymd.substring(8, 10) ); var year = date.getFullYear(); var month = date.getMonth() - 1; var day = date.getDate(); calc = calc.split(' '); if (calc[1] == 'year') date = new Date(year + ..