files/en-us/web/api/cookiechangeevent/index.md
{{securecontext_header}}{{APIRef("Cookie Store API")}}
The CookieChangeEvent interface of the {{domxref("Cookie Store API", "", "", "nocode")}} is the event type of the {{domxref("CookieStore/change_event", "change")}} event fired at a {{domxref("CookieStore")}} when any cookies are created or deleted.
[!NOTE] A cookie that is replaced due to the insertion of another cookie with the same name, domain, and path, is ignored and does not trigger a change event.
{{InheritanceDiagram}}
CookieChangeEvent.This interface also inherits properties from {{domxref("Event")}}.
This interface also inherits methods from {{domxref("Event")}}.
In this example when the cookie is set, the event listener logs the event to the console. This is a CookieChangeEvent object with the {{domxref("CookieChangeEvent.changed","changed")}} property containing an object representing the cookie that has just been set.
cookieStore.addEventListener("change", (event) => {
console.log(event);
});
const oneDay = 24 * 60 * 60 * 1000;
cookieStore.set({
name: "cookie1",
value: "cookie1-value",
expires: Date.now() + oneDay,
domain: "example.com",
});
{{Specifications}}
{{Compat}}