|

7 posts

15 / 7
·테크·Frontend

[JS] Session Storage Used Space 확인하기

Full page →
Frontend

사용중인 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`);

 

Comments

No comments yet. Be the first!