I try to understand arrow functions of typescript by the example of Angular 2 Observable subscribe method. Could somebody explain me:
I have this code which works:
 this.readdataservice.getPost().subscribe(
            posts => { this.posts = posts; }
        );
but should it be the same if I use this? But this doesn't work.
this.readdataservice.getPost().subscribe(
            function (posts) {
                this.posts = posts;
            }
        );
 
     
     
    