first you need to make an object which have your all keys. and then set them to local storages instead of having different keys.
for example
var myobj={
"firstData":"data1",
"secondData":"data2",
"thirdData": "data3"
}
now set this data to localStorage
localStorage.setItem('MyObject', JSON.stringify(myobj));
now set this data From localStorage
var AllKeysFromLocalStorage = localStorage.getItem('MyObject');
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…