// set a cookie named 'admin' with a value of 'Harmen' to expire after 2 days cookiejar.bake ('admin', 'Harmen', 2); // alert the value of the cookie named 'admin' alert (cookiejar.fetch('admin')); // remove the cookie cookiejar.crumble('admin');