Solved
How to clear/remove array in sessionStorage
I am storing array in sessionstorage. I'm able to update the array using
sessionStorage.setItem(Op_withoutSpaces + "_" + i, array);
but i couldn't remove or clear the array in sessionstorage using below code.
sessionStorage.clear(Op_withoutSpaces + "_" + i);
sessionStorage.RemoveItem(Op_withoutSpaces + "_" + i);
Let me know what is wrong in this.


