Skip to content

Instantly share code, notes, and snippets.

@BKeanu1989
Last active February 9, 2017 14:01
Show Gist options
  • Save BKeanu1989/1393cf6ec82673612f16590bcda8a37f to your computer and use it in GitHub Desktop.
Save BKeanu1989/1393cf6ec82673612f16590bcda8a37f to your computer and use it in GitHub Desktop.
listCookies.js
function listCookies() {
var theCookies = document.cookie.split(';');
var aString = '';
for (var i = 1 ; i <= theCookies.length; i++) {
aString += i + ' ' + theCookies[i-1] + "\n";
}
return aString;
}
listCookies();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment