I am trying to console.log one of my cookies called "access-token", and I need to get this specific cookie, but when I try to use document.cookie, I get lots of other unwanted cookies. Is it possible to specifically get this cookie?
I've tried document.cookie('access-token') but it returns an error.