코드/Knowledge Base

[JS] 쿠키 삭제

Yeah-Panda 2023. 3. 31. 16:39
const cookieName = 'a';
const cookieValue = 1;
const cookieMaxAge = 0;
const date = new Date();
date.setDate(date.getDate() + (24 * 60 * 60 * 1000));

document.cookie = `${cookieName}=${cookieValue};expires=${date.toUTCString()};max-age=${cookieMaxAge}`;

max-age=0 으로 쿠키 만료 및 삭제 시킬수 있다

 

https://github.com/losbanos/node-zero/commit/ec5e8ce610216cc6082c911d455416d1cb4c676a

'코드 > Knowledge Base' 카테고리의 다른 글

[Npm] npm and git  (0) 2024.01.12
[TS] d.ts Types 파일 만들기  (1) 2023.12.11
[JS] 이벤트 루프  (0) 2023.01.04
웹소켓이 뭐냐면  (0) 2022.01.26
[HTTP] 300 Status Code  (0) 2020.02.15