firebase authentication logout

Solutions on MaxInterview for firebase authentication logout by the best coders in the world

showing results for - "firebase authentication logout"
Dario
23 Jul 2017
1firebase.auth().signOut().then(function() {
2  console.log('Signed Out');
3}, function(error) {
4  console.error('Sign Out Error', error);
5});
6