0 votes
in JavaScript by (30.6k points)
How to create a Cookie using JavaScript?

1 Answer

0 votes
by (23.1k points)

The simplest way to create a cookie is to assign a string value to the document.cookie object, which looks like this −

Syntax −

document.cookie = "key1 = value1; key2 = value2; expires = date";

Here expires attribute is option. If you provide this attribute with a valid date or time then cookie will expire at the given date or time and after that cookies' value will not be accessible.

Click here to read more about JavaScript
Click here to read more about Insurance

Related questions

0 votes
asked Sep 19, 2021 in JavaScript by sharadyadav1986 (30.4k points)
0 votes
0 votes
asked Sep 19, 2021 in JavaScript by sharadyadav1986 (30.4k points)
...