[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 테크
- 341Migrating from Permanent Access Tokens to Token Exchange — Why Order Matters
- 326Startup & Product Glossary: Terms Every Solo Founder Should Know
- 325Context Management — How I Do It Now
- 324Claude Code Routines vs Cowork Schedule — What's the Difference?
- 323로컬 LLM + Claude Code로 PM 업무 자동화 에이전트 만들기
1–5 / 318