Skip to content

Instantly share code, notes, and snippets.

@andijakl
Created October 8, 2018 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andijakl/5339ed1b2262ec81513e60bea7fa7bfa to your computer and use it in GitHub Desktop.
Save andijakl/5339ed1b2262ec81513e60bea7fa7bfa to your computer and use it in GitHub Desktop.
Node.js callback example 2 - separate function instead of anonymous functions
const request = require("request");
request("https://www.andreasjakl.com/", handleResponse);
function handleResponse(error, response, body) {
if (error) {
// Handle error
console.log("Error: ", error);
} else {
// Successful request
console.log("body: ", body);
}
}
console.log("Starting...");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment