InterviewSolution
Saved Bookmarks
| 1. |
How can you set a Cookie visibility scope to local Storage?(a) /(b) %(c) *(d) # |
|
Answer» The correct option is (a) / To elaborate: 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. |
|