파게로그

JSON 다루기 본문

콤퓨타 왕기초/JS

JSON 다루기

파게 2020. 10. 15. 10:58

localStorage에는 String만 저장되므로

JS의 object 등을 저장하거나 불러올 때에는 JSON 메서드를 이용해 stringify 또는 parse해야 한다.

 

const newArr = ["elem1", "elem2", "elem3", "elem4", "elem5"];
const newInt = 5;
const newObj = {
	newArr,
	newInt
};
const stringified = JSON.stringify(newObj);
localStorage.setItem(localStorageAttribute, stringified);
const localStorageValue = localStorage.getItem(localStorageAttribute);
const parsed = JSON.parse(localStorageValue);

'콤퓨타 왕기초 > JS' 카테고리의 다른 글

33 Concepts Every JS Developer Should Know  (0) 2020.10.19
유용한 libs, APIs  (0) 2020.10.15
DOM에서 element 생성 또는 제거  (0) 2020.10.15
array  (0) 2020.10.15
event, event handlers (2)  (0) 2020.10.12
Comments