public Role;
ngOnInit() {
this.getRole()
{
this.roleserive.getrole(this.token)
.subscribe(
res => {
this.Role = res;
console.log(this.Role)
}
)
}
console.log(this.Role)
if(this.Role == 'emp')
{
this.getAllProjects();
}
}
when i use console.log in function browser show the value of role but when i use it after function angular can't read the value of role