var user = firebase.auth().currentUser; var newPassword = getASecureRandomPassword(); user.updatePassword(newPassword).then(function() { // Update successful. }).catch(function(error) { // An error happened. });