I\'m following this tutorial about how to connect angular with firebase database. But in minute 17:30 I\'m getting this error:
Property \'subscribe\' does not ex
A simpler change would to be add valueChanges() before .subscribe()
valueChanges()
.subscribe()
db.list('/Country/countries').valueChanges().subscribe(countries => { this.countries = countries; console.log(this.countries); });