사용중인 session storage size는 다음과 같이 확인이 가능합니다.

 

// Get the session storage object
const sessionStorage = window.sessionStorage;

// Get the current amount of space used by session storage
const usedSpace = JSON.stringify(sessionStorage).length;

// Log the used space in bytes
console.log(`Session storage used space: ${usedSpace} bytes`);

 

댓글