alert(document.cookie); //no content
document.cookie="cookie1=the first cookie"; alert(document.cookie); //cookie1=the first cookie
document.cookie="cookie2=another cookie"; alert(document.cookie); //cookie1=the first cookie; cookie2=another cookie"
document.cookie="cookie1=the first cookie updated"; alert(document.cookie); //cookie1=the first cookie updated; cookie2=another cookie"
alert(document.cookie); //nothing