function setSessionStorage(key, value){
sessionStorage.setItem(key, value);
}
function getSessionStorage(key){
return sessionStorage.getItem(key);
}
function setJSONSessionStorage(key, value){
sessionStorage.setItem(key, JSON.stringify(value));
}
function getJSONSessionStorage(key){
return JSON.parse(sessionStorage.getItem(key));
}
function removeSessionStorage(key){
sessionStorage.removeItem(key);
}
setJSONSessionStorage, getJSONSessionStorage ๋ฉ์๋๋ ๊ฐ์ฒด๋ก ์ ์ฅํ๊ฑฐ๋ ๊ฐ์ ธ์ฌ ์ ์์ต๋๋ค.
'...' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[JavaScript] ๋ฌดํ ์คํฌ๋กค ๊ธฐ๋ฅ ๊ตฌํํ๊ธฐ (0) | 2021.08.27 |
---|---|
[JavaScript] ๋ฌดํ ์คํฌ๋กค ์ ์ํ ์์น ์ ์ง (0) | 2021.08.27 |
[AWS] IAM ์ ์ ๋ฐ MFA ์์ฑํ๊ธฐ (0) | 2021.08.26 |
[Maven] Springboot ํ๋ก์ ํธ์์ mvnw, mvnw.cmd ๋ ๋ฌด์์ผ๊น? (0) | 2021.08.26 |
[Docker] ์ธ๋ถ์์ ์ปจํ ์ด๋ ๋ด๋ถ์ ์ ์ํ๊ธฐ (0) | 2021.08.25 |