From c45e78fdff480fa2d2f8e0eb439a5ec88f92a781 Mon Sep 17 00:00:00 2001 From: joaquinelio Date: Fri, 18 Jun 2021 18:09:05 -0300 Subject: [PATCH] Maybe. "accessors" link --- 6-data-storage/01-cookie/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-data-storage/01-cookie/article.md b/6-data-storage/01-cookie/article.md index ac2fda06..33161cd9 100644 --- a/6-data-storage/01-cookie/article.md +++ b/6-data-storage/01-cookie/article.md @@ -39,7 +39,7 @@ We leave it as an exercise for the reader. Also, at the end of the chapter you'l ## Writing to document.cookie -We can write to `document.cookie`. But it's not a data property, it's an accessor (getter/setter). An assignment to it is treated specially. +We can write to `document.cookie`. But it's not a data property, it's an [accessor (getter/setter)](info:property-accessors). An assignment to it is treated specially. **A write operation to `document.cookie` updates only cookies mentioned in it, but doesn't touch other cookies.**