firebase auth sign out javascript

Solutions on MaxInterview for firebase auth sign out javascript by the best coders in the world

showing results for - "firebase auth sign out javascript"
Gracie
16 Jun 2017
1firebase.auth().signOut().then(function() {
2  console.log('Signed Out');
3}, function(error) {
4  console.error('Sign Out Error', error);
5});
6