var obj = {val: "aaa"};
var test =
{
o1: obj,
o2: obj
};
console.log(test.o1==test.o2);
localStorage.test = JSON.stringify(test);
test = JSON.parse(localStorage.test);
console.log(test.o1==test.o2);
закономерно получаем true, false
вопрос:
есть ли способ так засунуть объекты в storage
чтоб было true, true при обратной загрузке
???