document.cookie
//It will show all the cookie stored with refrence to website
to Set Cookie
document.cookie = "name=atul";
document.cookie = "age=12";
document.cookie
'name=atul;age=12' //Cookie will be in String Form
add split function to split it in the form of array;
No comments:
Post a Comment