Skip to content

Commit eeb29a4

Browse files
authored
Merge pull request #2377 from pablo-maff/5a-change-broken-link-domstring
Propsal of new external link for DomString
2 parents 0fa2495 + 99ac095 commit eeb29a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/5/en/part5a.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,7 @@ Values in the local storage are persisted even when the page is rerendered. The
429429

430430
Let's extend our application so that it saves the details of a logged-in user to the local storage.
431431

432-
Values saved to the storage are [DOMstrings](https://developer.mozilla.org/en-US/docs/Web/API/DOMString), so we cannot save a JavaScript object as it is. The object has to be parsed to JSON first, with the method _JSON.stringify_. Correspondingly, when a JSON object is read from the local storage, it has to be parsed back to JavaScript with _JSON.parse_.
432+
Values saved to the storage are [DOMstrings](https://docs.w3cub.com/dom/domstring), so we cannot save a JavaScript object as it is. The object has to be parsed to JSON first, with the method _JSON.stringify_. Correspondingly, when a JSON object is read from the local storage, it has to be parsed back to JavaScript with _JSON.parse_.
433433

434434
Changes to the login method are as follows:
435435

0 commit comments

Comments
 (0)