JavaScript tutorial for beginners 🌐 - Learn how JavaScript COOKIES work! 🍪
5.0(0)
6 learners
What you'll learn
This course includes
12.5 hours of video
Certificate of completion
Access on mobile and TV
Summary
Full Transcript
#JavaScript #cookies #tutorial
// cookie = a small text file stored on your computer
// used to remember information about the user
// saved in name=value pairs
//console.log(navigator.cookieEnabled);
//document.cookie = "firstName=Spongebob; expires=Sun, 1 January 2030 12:00:00 UTC; path=/";
//document.cookie = "lastName=Squarepants; expires=Sun, 1 January 2030 12:00:00 UTC; path=/";
//let allCookies = document.cookie;
//console.dir(allCookies);
Continue this lesson in the app
Install CourseHive on Android or iOS to keep learning while you move.