What is the full definition of cookie | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the full definition of cookie

What do you think?

8th Apr 2019, 6:23 PM
aphran
4 Answers
+ 5
Cookies are data, stored in small text files, on your computer. You can visit: https://www.w3schools.com/js/js_cookies.asp
8th Apr 2019, 6:37 PM
VEDANG
VEDANG - avatar
+ 3
A cookie is a piece of data that stores information which is saved on the user's system. They are useful for saving information such as visited pages, passwords, etc. Cookies not the best practice for most modern browsers and instead you should look at other ways of storing data on the client side such as Web Storage and IndexedDB. https://www.sololearn.com/learn/PHP/1843/
9th Apr 2020, 6:53 AM
Cmurio
Cmurio - avatar
+ 2
A cookie is a small file that the server embeds on the user's computer containing information to Identify user. https://www.sololearn.com/learn/PHP/1843/
8th Apr 2019, 6:44 PM
Sudarshan Rai
Sudarshan Rai - avatar
0
I strongly recommend Mozilla Developer Network (MDN). https://developer.mozilla.org/en-US/docs/Web/HTTP/Cookies
8th Apr 2019, 6:55 PM
Victor Andersson
Victor Andersson - avatar