
반응형
const remove = function () {
window.onbeforeunload = () => {
localStorage.removeItem(USER_LS);
localStorage.removeItem(weight);
};
};
function init() {
loadWeight();
remove();
}
init();
반응형
'Backend 언어 및 프레임워크' 카테고리의 다른 글
JS) call stack(콜스택) (0) | 2020.12.15 |
---|---|
JS) 음악 재생 (0) | 2020.12.14 |
JS) 시간 및 요일 함수 (0) | 2020.12.12 |
JS) 객체지향-5 constructor (0) | 2020.12.09 |
JS) 객체지향-4 proto link(객체 상속), call vs bind (0) | 2020.12.09 |