InterviewSolution
Saved Bookmarks
| 1. |
How can you set a Cookie visibility scope to localStorage?(a) /(b) %(c) *(d) // |
|
Answer» Right answer is (a) / The explanation: Setting the path of a cookie to “/” gives scoping like that of localStorage and also specifies that the browser must transmit the cookie name and value to the server whenever it requests any web page on the site. |
|