Read Cookie using Javascript

JavaScript can create, read, and delete cookies with the document.cookie property. Syntax: document.cookie = “key1 = value1; key2 = value2; expires = date”; Where: expires: is an optional attribute that specifies the date of cookie expiration. Example: document.cookie = “username=jai; Read a cookie using javascript var x = document.cookie; Related topics: What is JavaScript? JavaScript advantages and … Read more