I am trying to change/update a user\'s email address using :
firebase.auth().changeEmail({oldEmail, newEmail, password}, cb)
But I am getti
If someone is looking for updating a user's email via Firebase Admin, it's documented over here and can be performed with:
admin.auth().updateUser(uid, { email: "modifiedUser@example.com" });