Cache

Cookies

Cookies låter oss spara små datavärden, såsom tokens.
Dessa används främst för inlogg/identifiering och att urskilja samma användare löpande.
document.cookie = "name=John"; // uppdaterar värdet på cookie med namnet “user”
console.log(document.cookie); // Visa alla cookies vi har

console.log(getCookie("name"));

// Hämtar cookie-value för given tag
// ger undefined om “not found”
function getMyCookie(name) {
let matches = document.cookie.match(new RegExp(
"(?:^|; )" + name.replace(/([\.$?*|{}\(\)\[\]\\\/\+^])/g, '\\$1') + "=([^;]*)"
));
return matches ? decodeURIComponent(matches[1]) : undefined;
}
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.