Array of JSON objects are stored in HTML5 localStorage. For now delimiter is ; For accessing and modifying array of object
localStorage
;
Read variables:
var xyz = JSON.parse( localStorage.getItem( 'element' ) );
Store variables:
localStorage.setItem( 'element' , JSON.stringify(xyz));
where element is the name of the local storage variable and xyz the name of the js variable.
element
xyz