[javascript] 쿠키 날짜(수명) 제한 설정

date = new Date();
date.setDate(date.getDate()+수명기간(일));
document.cookie = `이름=값;expires=${date.toUTCString()};path=/;SameSite=Lax`;

// 강제 삭제
document.cookie = '이름=; expires=Thu, 18 Dec 2000 00:00:00 GMT';

자바스크립트에서 쿠키값을 제한시간을 정해서 설정하는 방법

Leave a Comment