Published
- 1 min read
firebase get current user javascript
The solution for this is noted below
firebase get current user javascript
Solution
var user = firebase.auth().currentUser
if (user) {
// User is signed in.
} else {
// No user is signed in.
}
Try other methods by searching on the site. That is if this doesn’t work