This is basically used to read the cookies data by using the key and value pair in MVC 5 jQuery. The code sample as give below. var cookies = cookies || {}; cookies.read = new function (){ function setCokiesValue(key, value) { session[key] = value; }; var session = []; var getCookie = function readCookie () { match = document.cookie.match( new RegExp( 'MyCookieName' + '=([^;]+)' )); if (match) { var array = match[1].split( '&' ); for ( var i = 0; i < array.length; i++) { name = array[i].split( '=' )[0]; value = array[i].split( '=' )[1]; session.push(setCokiesValue(name, value)); ...
Angular, React, JavaScript, Java, PHP, SQL, C#, Vue, NodeJs, TypeScript and Interview Questions Answers