Edit and storing json after fetching

Hi
I fetching a json this way:
this.http.get(‘http://someaddress.json’).map(res => res.json()).subscribe(data => {
//reading data here
});
Now I would like to change some of the data and store it locally and after that I want to read the stored data.
What is best practice for doing it?