0 votes
in JavaScript by
How to create a Cookie using JavaScript?

1 Answer

0 votes
by

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.

Related questions

0 votes
asked Sep 21, 2023 in Dot Net by Robin
0 votes
asked Sep 19, 2021 in JavaScript by sharadyadav1986
...