Skip to content

Instantly share code, notes, and snippets.

@jetchirag
Created September 15, 2017 10:45
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 jetchirag/daae82cb617e0f1a1c83fd08c99418e3 to your computer and use it in GitHub Desktop.
Save jetchirag/daae82cb617e0f1a1c83fd08c99418e3 to your computer and use it in GitHub Desktop.
var bufferString;
function getQuote(callback) {
bufferString = "I'm groot";
callback();
}
function sendOut() {
console.log(bufferString);
}
getQuote(sendOut);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment