브라우저 안의 작은 DB같은 API.
: Item을 저장하는 것.
- 구문
localStorage.setItem("key", "value");
: 저장된 Item을 가져오는 것.
- 구문
localStorage.getItem ("key");
: 저장된 Item을 지우는 것.
- 구문
localStorage.removeItem ("key");
localStorage는 string으로만 저장할 수 있다.
JS object나 array 등을 string으로 변환하여 localStorage에 저장하고 싶을 때, 사용하면 된다.
반대로 string을 JS가 이해할 수 있는 array로 변환하고 싶을 때, 사용하면 된다.