Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 503 Bytes

What-are-the-options-in-a-cookie.md

File metadata and controls

15 lines (10 loc) · 503 Bytes

What are the options in a cookie

There are few below options available for a cookie,

By default, the cookie is deleted when the browser is closed but you can change this behavior by setting expiry date (in UTC time).

document.cookie = "username=John; expires=Sat, 8 Jun 2019 12:00:00 UTC"

By default, the cookie belongs to a current page. But you can tell the browser what path the cookie belongs to using a path parameter.

document.cookie = "username=John; path=/services"