, <— REMOVE
1 2
I din’t understand what you want but you cannot store object in localStorage. You will have to convert the object into string like this:
$localstorage.set('item_name', json.stringify(object_name) );
thank you! I’ll check