I have a Observable of service data which return true or false value ,when call the servive which returns
let m =this.myService.checkCapabilityOf(constantvalue);
console.log(m);
Here in the observable value it return false, I need to get the value so i have subscribe the observable.
let m =this.myService.checkCapabilityOf(constantvalue).subscribe(value => value);
console.log(m);
But it returns below format , howto get a value from observable