I am trying to update the array value but inside httpClient method it is working But it is not working outside. So, how to resolve this issue in angular 14.
app.component.ts:
  ngOnInit(): void {
      this.httpClient.get<string[]>('../assets/data.json').subscribe((data) => {
      this.groupData = data;
      console.log(this.groupData); // it should be data.json value
  }); 
   
  }
Demo : https://stackblitz.com/edit/angular-ivy-1hqg9x?file=src%2Fapp%2Fapp.component.ts
 
    