From 6cb30c1529af8aa0f2e61eb1a542f0ca3a6248cd Mon Sep 17 00:00:00 2001 From: AmirHosein <46990895+ahghanbari@users.noreply.github.com> Date: Wed, 17 Aug 2022 04:00:40 +0430 Subject: [PATCH] Update 17_day_web_storages.md Correct spelling mistakes --- 17_Day_Web_storages/17_day_web_storages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17_Day_Web_storages/17_day_web_storages.md b/17_Day_Web_storages/17_day_web_storages.md index 3481232..ec158fd 100644 --- a/17_Day_Web_storages/17_day_web_storages.md +++ b/17_Day_Web_storages/17_day_web_storages.md @@ -57,7 +57,7 @@ sessionStorage is only available within the browser tab or window session. It’ ### localStorage -The HTML5 localStorage is the para of the web storage API which is used to store data on the browser with no expiration data. The data will be available on the browser even after the browser is closed. localStorage is kept even between browser sessions. This means data is still available when the browser is closed and reopened, and also instantly between tabs and windows. +The HTML5 localStorage is the part of the web storage API which is used to store data on the browser with no expiration data. The data will be available on the browser even after the browser is closed. localStorage is kept even between browser sessions. This means data is still available when the browser is closed and reopened, and also instantly between tabs and windows. Web Storage data is, in both cases, not available between different browsers. For example, storage objects created in Firefox cannot be accessed in Internet Explorer, exactly like cookies. There are five methods to work on local storage: _setItem(), getItem(), removeItem(), clear(), key()_