Maximum Storage Lifetime

Last updated
Was this helpful?
Was this helpful?
window.jentis.helper.setCookie({
"name": "test-lifetime-cookie",
"value": "test-lifetime-cookie",
"exdays": 1000,
"sameSite": "Strict"
});
window.jentis.helper.setServerCookie({
"name": "test-lifetime-server-cookie",
"value": 'test-lifetime-server-cookie',
"exdays": 1000 * 24 * 60 * 60 * 1000,
});
window.jentis.helper.setLocalStorageItem("test-lifetime-localstorage", "test-lifetime-localstorage", 1000 * 24 * 60 * 60 * 1000);
const cookie = window.jentis.helper.readCookie('test-lifetime-cookie');
const serverCookie = window.jentis.helper.readCookie('test-lifetime-server-cookie');
const localStorage = window.jentis.helper.getLocalStorageItem("test-lifetime-localstorage");