Tiny Frontend Logo
Posts 0114

On This Page

Cookies

As a frontend developer, understanding how cookies work is essential for building robust web applications. In this article, we'll explore the world of browser cookies, demystify their mechanics, and learn how to harness their power in your projects.

What Are Cookies and How Do They Work?

A browser cookie is a small piece of data stored on a user's browser. It's created either by client-side JavaScript or a server during a HTTP request.

Purpose

Cookies serve various purposes, including session management, personalization (such as themes or settings), and tracking user behavior across websites.

Persistence

Unlike session storage, cookies persist even after the user closes the browser or navigates away from the website.

Client-Side Access to Cookies

Reading Cookies

Use document.cookie to access all cookies at the current location.

It returns a semicolon-separated string of key-value pairs.

Setting Cookies

Set a cookie by assigning a string in key=value format to document.cookie.

Attributes

Cookies have attributes (e.g., expires, domain, secure) that control their behavior.

For example, you can set an expiration date for a cookie.

Subscribe to read the full content

* Free subscribe to enjoy full content access.
* You can cancel anytime with 1-click.

Read Next

0113

JavaScript: Local Storage

Understanding how to store data on the client side is essential for creating robust web applications. In this article, we'll explore local storage, one of the key mechanisms for caching data within the user's browser. Let's dive in!

0112

JavaScript: Session Storage

As a frontend developer, understanding how to store data on the client side is crucial. In this article, we’ll delve into the world of web storage, specifically focusing on session storage. Let’s explore what it is, how it works, and when to use it.

JavaScript: Session Storage
0110

Cross-Origin Resource Sharing (CORS)

Please imagine you're building a spiffy weather application using JavaScript and you want to display live weather data from a popular weather service.

Cross-Origin Resource Sharing (CORS)
0109

Cross-Site Scripting (XSS) in JavaScript

Cross-Site Scripting (XSS) is a web security vulnerability that allows an attacker to inject malicious code into a web page that is viewed by other users.

Cross-Site Scripting (XSS) in JavaScript
0108

Multiple Promises Handling in JavaScript

Promises are a powerful way to handle asynchronous operations in JavaScript. They allow us to write clean and readable code, without using callbacks or nested functions.

Multiple Promises Handling in JavaScript
0107

Promises for Asynchronous JavaScript

In this guide, we'll delve into the ins and outs of promises, covering their syntax, usage, common patterns, and best practices.