Ionic Session Storage Results Lists Problem

Hi everyone,
I stored a array list in session storage variable when i try to fetch the list from it it hides the last result of array value but when i inspect and change any css it is shown.Working fine in browser but problem in android device.Quick help would be appreciated

This is my code

Initialisation
sessionStorage.setItem(“SessionMessage”, JSON.stringify(response));

Fetching

$scope.chefList = JSON.parse(sessionStorage.getItem(“SessionMessage”));

Its because you are using sessionStorage where a browser page’s session lasts for as long as the browser is open and even survives over page reloads and restores. But, it gets cleared when the page session ends.sessionStorage

You have to use localStorage to make the value persist when you are logging via device.

Thank you thesourav for you reply .i will try