InterviewSolution
Saved Bookmarks
| 1. |
Which of the following defines the Cookie visibility?(a) domain Path(b) local & session storage(c) server storage(d) transient Path |
|
Answer» The correct option is (b) local & session storage For explanation I would say: sessionStorage, localStorage and Cookies all are used to store data on the client-side. Each one has its own storage and expiration limit. Cookie visibility is scoped by document origin as localStorage and sessionStorage are, and also by document path. |
|