I have this service that fetches the data from my mongo collection through the node server
this._api.getCompanyData().subscribe(data => this.companydata = data)
localStorage.setItem("officeaddress",this.companydata.regofficeAddress) //this shows error that cant read regofficeAddress of undefined
this works fine in the template file when i use {{ companydata.regofficeAddress }}
but i want to fetch the particular value (officeaddress) in the controller itself.