Posts

Showing posts from September, 2021

ionic react project

how to create page in react ionic project create file add a name to that file add extension example Home.tsx Home.css .......... add routing to App.tsx              <Route exact path="/home">             <Home />           </Route> add above one in  <IonRouterOutlet>

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));