Skip to content

Instantly share code, notes, and snippets.

@jonathan-fulton
Created June 15, 2017 17:14
Show Gist options
  • Save jonathan-fulton/63706c9490634bc48f768051256dbdf1 to your computer and use it in GitHub Desktop.
Save jonathan-fulton/63706c9490634bc48f768051256dbdf1 to your computer and use it in GitHub Desktop.
Example of a side effect
function getUserByEmailAndPassword(email, password) {
let user = UserService.getByEmailAndPassword(email, password);
if (user) {
LoginService.loginUser(user); // Log user in, add cookie (Side effect!!!!)
}
return user;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment