JavaScript Local Storage String Array - Can only access '0' element
Looking for help with the correct syntax and approach for getting the elements of a Javascript string array one at a time for an array created using a Model and declared in local storage.
This line below works and returns the correct value
var typevalue = Apperyio.storage.assetTypeListValues.get("$[0]");
This does not work
var typevalue = Apperyio.storage.assetTypeListValues.get("$[1]");
Thanks for any help.