update localstorage value

 var persons = JSON.parse(localStorage.persons);

for (var i = 0; i < persons.length; i++) {

   if(inputName === persons[i].name){  //look for match with name

       persons[i].age += 2;  //add two

       break;  //exit loop since you found the person

   }

}

localStorage.setItem("persons", JSON.stringify(persons));

Comments

Popular posts from this blog

Your app currently targets API level 27 and must target at least API level 28 to ensure it is built on the latest APIs optimized for security and performance. Change your app's target API level to at least 28

ionic project creation

change root user in ubuntu