I have a JSON array in localstorage
. I want to retrieve this array, and display the values.
The storage key is _myobject
, and the value is
[{"64508":"12:12:2"},{"5292":"12:17:34"}]
What I want is to know how I can use JavaScript/jQuery to display/print the values in the following format:
Number: 64508 - Time: 12:12:2
Number: 5292 - Time: 12:17:34
Could somebody please direct me on how I could do this?