tariq
Posts: 0
Joined: Wed Nov 13, 2013 5:23 pm

How to retrieve an Array form Local Storage ??

Hi
I Saved items in Array then saved the array on local storage, how can i retrieve special element or group of elements from local storage??

Illya Stepanov
Posts: 0
Joined: Mon Mar 18, 2013 8:48 am

How to retrieve an Array form Local Storage ??

Hello,

The arrays in JavaScript has several methods for working with elements.

If you are saving objects array in localStorage, you'll need to convert values to a string:
pre
JSON.parse();
JSON.stringify();
/pre

If you are looking for a associative array - hope this article will help you.

tariq
Posts: 0
Joined: Wed Nov 13, 2013 5:23 pm

How to retrieve an Array form Local Storage ??

Thanks Illya, i'll try them on my array.

Return to “Issues”