From 7e96f614c84b705577449865d56553f54ef1ea19 Mon Sep 17 00:00:00 2001 From: Luis Rodil-Fernandez Date: Sun, 18 Sep 2022 21:35:31 +0200 Subject: [PATCH] typo corrected --- localStorage/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localStorage/README.md b/localStorage/README.md index 0b3cb1f..20ecbe3 100644 --- a/localStorage/README.md +++ b/localStorage/README.md @@ -1,4 +1,4 @@ -# locaStorage +# localStorage Javascript has an API called `localStorage` that let's you store some data in the browser in between sessions, the idea is similar to storing a cookie but it has no expiry date and can store some more data. It is useful to save configuration of web applications, personal preferences, etc. There's no specc'ed limit to how much data the browser let's you store but most common implementations (e.g. Chrome) limit `localStorage` to 10MB, some documentation says 5MB.