|

[JS] Session Storage Used Space 확인하기

· 테크· Frontend
Frontend

Machine translation — switch to KO for the original.

사용중인 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!

    318 posts in 테크

    15 / 318