From 0b7266da47700436842bc0c956f11c6ed54db7a7 Mon Sep 17 00:00:00 2001 From: Pankaj Tanwar <2016ucp1381@mnit.ac.in> Date: Fri, 17 Jul 2020 21:40:25 +0530 Subject: [PATCH] Browser LocalStorage capacity updated to 5 MB. --- 6-data-storage/02-localstorage/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/6-data-storage/02-localstorage/article.md b/6-data-storage/02-localstorage/article.md index 3ba9aa97..d5d0bbdc 100644 --- a/6-data-storage/02-localstorage/article.md +++ b/6-data-storage/02-localstorage/article.md @@ -222,7 +222,7 @@ Modern browsers also support [Broadcast channel API](https://developer.mozilla.o Web storage objects `localStorage` and `sessionStorage` allow to store key/value in the browser. - Both `key` and `value` must be strings. -- The limit is 2mb+, depends on the browser. +- The limit is 5mb+, depends on the browser. - They do not expire. - The data is bound to the origin (domain/port/protocol).