From 1b2dd03061573bfd3764d4e013760f517328daed Mon Sep 17 00:00:00 2001 From: Lanka Rathanyaka Date: Mon, 19 Oct 2020 20:08:17 +0530 Subject: [PATCH] Update 17_day_web_storages.md Documentation simple fix --- 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 f10d14d..6b1ee1e 100644 --- a/17_Day_Web_storages/17_day_web_storages.md +++ b/17_Day_Web_storages/17_day_web_storages.md @@ -38,7 +38,7 @@ Web Storage(sessionStorage and localStorage) is a new HTML5 API offering important benefits over traditional cookies. Before HTML5, application data had to be stored in cookies, included in every server request. Web storage is more secure, and large amounts of data can be stored locally, without affecting website performance. The data storage limit of cookies in many web browsers is about 4 KB per cookie. We Storages can store far larger data (at least 5MB) and never transferred to the server. All sites from the same or one origin can store and access the same data. -The data being stored can be accessed using JavaScript, which gives you the ability to leverage client-side scripting to do many things that have traditionally involved server-side programming and relational databases. The are are two Web Storage objects: +The data being stored can be accessed using JavaScript, which gives you the ability to leverage client-side scripting to do many things that have traditionally involved server-side programming and relational databases. There are are two Web Storage objects: - sessionStorage - localStorage