Question d’entretien chez Cake & Arrow

Describe the difference between a cookie, sessionStorage and localStorage.

Réponse à la question d'entretien

Utilisateur anonyme

11 juil. 2017

localStorage and sessionStorage both store information on the browser, but localStorage data remains there beyond the browser session -- though both can be removed by the user at any point. Cookies also store information but are generally used for authentication purposes.