Answers for "read cookies js"

2

get cookie in javascript

function getCookie(cookie, name) {
  const q = {}
  cookie?.replace(/s/g, '')
    .split(';')
    .map(i=>i.split('='))
    .forEach(([key, value]) => {
      q[key] = value
    })
  return q[name]??null;
}
Posted by: Guest on August-27-2021
0

document cookies javascript

cookieData=document.cookie.split("; ");

for(let i=0; i<cookieData.length; i++){

  cookieData[i]=cookieData[i].split("=");
  cookieName=cookieData[i][0];
  cookieValue=cookieData[i][1];

  //write your cookie name which you want to see in the place of 'mobNo'
  if(cookieName==='mobNo'){
    console.log(cookieData[i]);
  }
}
Posted by: Guest on February-14-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language