Data Storing in Browser Flashcards

1
Q

localStorage and sessionStorage

A

Web storage objects localStorage and sessionStorage allow to save key/value pairs in the browser. data survives a page refresh (for sessionStorage) and even a full browser restart (for localStorage)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Browser Storage vs Cookies

A

Unlike cookies, web storage objects are not sent to server with each request. Because of that, we can store much more. Most modern browsers allow at least 5 megabytes of data (or more) and have settings to configure that.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Storage Binding

A

The storage is bound to the origin (domain/protocol/port triplet)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Methods

A

localStorage is like a Map collection (setItem/getItem/removeItem), but also allows access by index with key(index).

setItem(key, value) – store key/value pair.
getItem(key) – get the value by key.
removeItem(key) – remove the key with its value.
clear() – delete everything.
key(index) – get the key on a given position.
length – the number of stored items.

both key and value must be strings.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Local Storage main features

A

Shared between all tabs and windows from the same origin.
The data does not expire. It remains after the browser restart and even OS reboot.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Storage Limit

A

The limit is 5mb+, depends on the browser.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Viewing local storage details

A

Open Developer Tools (F12 or Ctrl + Shift + I).

Go to the Application tab.

In the left sidebar, expand Storage → Click Local Storage.

Select your website domain.

You’ll see key-value pairs stored in localStorage.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Viewing local storage details using console

A

console.log(localStorage);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Cookies

A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly