Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
$arr = { 'id': id, 'title': title, 'url': link, };
const id = 1 const title = 'title' const link = 'https://toster.ru/q/488804' const $arr = { 'id': id, 'title': title, 'url': link, } window.localStorage.setItem('arr', JSON.stringify($arr)) const array = JSON.parse(window.localStorage.getItem('arr')) console.log(array['title'])
var myObject = {id: 1, title: 'title', url: 'link'}; localStorage.setItem('myObject', JSON.stringify(myObject)); ... myObject = JSON.parse(localStorage.getItem('myObject')); if (null !== myObject) { console.log(myObject.title); }