Skip to content

cookies.js

Mark Watson edited this page Aug 28, 2016 · 2 revisions
var b = pizza.open("www.google.com");

// Set a cookie 'which' with the value 'chocolate chip' on the current domain
b.setCookie("which", "chocolate chip");

// List all cookies set in the browser
console.log(b.listCookies());

Clone this wiki locally