-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path27_storage.js
116 lines (103 loc) · 4.01 KB
/
27_storage.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/**
* ========================================================
* Web Storage: localStorage and sessionStorage
* ========================================================
* Web storage allows you to store key-value pairs in a web browser with no expiration time (localStorage)
* or for the duration of the session (sessionStorage).
*/
/**
* ========================================================
* Basic Usage of localStorage
* ========================================================
* localStorage allows you to store data with no expiration time. This data will persist even after closing the browser.
*/
localStorage.setItem("username", "IshtmeetDoe");
const username = localStorage.getItem("username");
console.log(`Username: ${username}`); // Output: Username: IshtmeetDoe
localStorage.removeItem("username");
/**
* ========================================================
* Basic Usage of sessionStorage
* ========================================================
* sessionStorage allows you to store data for the duration of a page session.
*/
sessionStorage.setItem("sessionId", "123456");
const sessionId = sessionStorage.getItem("sessionId");
console.log(`Session ID: ${sessionId}`); // Output: Session ID: 123456
sessionStorage.removeItem("sessionId");
/**
* ========================================================
* Iterating Over Items
* ========================================================
* Both localStorage and sessionStorage provide a way to iterate over stored items.
*/
localStorage.setItem("username", "IshtmeetDoe");
localStorage.setItem("email", "[email protected]");
for (let i = 0; i < localStorage.length; i++) {
const key = localStorage.key(i);
const value = localStorage.getItem(key);
console.log(`${key}: ${value}`);
}
/**
* ========================================================
* Storage Event
* ========================================================
* The storage event is triggered when a storage area changes, due to setItem, removeItem, or clear method calls.
*/
window.addEventListener("storage", function (event) {
console.log(`Key changed: ${event.key}, New value: ${event.newValue}`);
});
/**
* ========================================================
* Nuances and Best Practices
* ========================================================
*/
/**
* 1. Data Type Limitation
* -----------------------
* Both localStorage and sessionStorage can only directly store strings. To store objects or arrays, serialize them to JSON.
*/
const user = { name: "IshtmeetDoe", age: 30 };
localStorage.setItem("user", JSON.stringify(user));
const retrievedUser = JSON.parse(localStorage.getItem("user"));
console.log(retrievedUser); // Output: { name: 'IshtmeetDoe', age: 30 }
/**
* 2. Storage Limit
* ----------------
* Both localStorage and sessionStorage have storage limits, typically around 5MB per domain in most modern browsers.
*/
/**
* 3. Session Storage and Tabs
* ---------------------------
* sessionStorage is isolated per tab or window. Opening a new tab or window won't share the stored data.
*/
/**
* 4. Synchronous Nature
* ---------------------
* The APIs for web storage are synchronous, meaning they could impact performance if used extensively.
*/
/**
* 5. Browser Support
* ------------------
* Web storage is widely supported across browsers, but it's a good idea to check for compatibility.
*/
if (typeof Storage !== "undefined") {
// Web storage supported
} else {
// Web storage not supported
}
/**
* 6. Storage Event Specifics
* --------------------------
* The 'storage' event is fired only in the context of other windows/tabs, not in the window/tab that made the change.
*/
/**
* 7. Security Implications
* ------------------------
* Avoid storing sensitive information like passwords or tokens in web storage, as they can be accessed through JavaScript.
*/
/**
* 8. Cross-Origin Restrictions
* ----------------------------
* Web storage adheres to the same-origin policy, meaning data stored will only be available on the same origin.
*/