Skip to content

Instantly share code, notes, and snippets.

@softauthor
Last active December 6, 2019 03:25
Show Gist options
  • Save softauthor/c82e083eda8a385ee6981ee5cadc5685 to your computer and use it in GitHub Desktop.
Save softauthor/c82e083eda8a385ee6981ee5cadc5685 to your computer and use it in GitHub Desktop.
JavaScript + Firebase: Get Logged In User Data [RTDB]
var email = "[email protected]"
var password = "pword1"
async function createNewAccount() {
try {
const user = await firebase.auth().createUserWithEmailAndPassword(email, password);
console.log(user.uid)
} catch (error) {
console.log(error.message)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment