From d0156d2d8c4655980557cc6372b2ac8b0d5cb5c5 Mon Sep 17 00:00:00 2001 From: Emre Date: Mon, 7 Nov 2022 12:37:56 +0300 Subject: [PATCH] Fixed the word "data" to "date". It might be a little bit hard to understand the sentence with the wrong word. --- 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..0f85245 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 para of the web storage API which is used to store data on the browser with no expiration date. 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()_