I need to get all the cookies stored in my browser using JavaScript. How can it be done?
Modern approach.
let c = document.cookie.split(";").reduce( (ac, cv, i) => Object.assign(ac, {[cv.split('=')[0]]: cv.split('=')[1]}), {}); console.log(c);
;)