From 18986e1f17303bf84116e836f6a12d4090078c36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdurrahman=20Ayy=C4=B1ld=C4=B1z?= <ayyildizabdurrahman@gmail.com> Date: Fri, 26 Aug 2022 00:17:23 +0300 Subject: [PATCH] Update 17_day_web_storages.md --- 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..d33a34d 100644 --- a/17_Day_Web_storages/17_day_web_storages.md +++ b/17_Day_Web_storages/17_day_web_storages.md @@ -36,7 +36,7 @@ ## HTML5 Web Storage -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. +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. Web 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. There are two Web Storage objects: