Skip to content

Instantly share code, notes, and snippets.

@malintha
Created June 7, 2016 05:15
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 malintha/03893106d19b7210ad7fab4b401d5ec7 to your computer and use it in GitHub Desktop.
Save malintha/03893106d19b7210ad7fab4b401d5ec7 to your computer and use it in GitHub Desktop.
find([1,2], response);
function response(err, result) {
if(err) {
alert(err);
}
else {
alert("operation successful : "+result);
}
}
alert("meanwhile I show up");
function find(elements, callback) {
//The time consuming operation
setTimeout(function() {
if(elements) {
elements.push(3,4,5);
callback(null, elements);
}
else {
callback("Elements array should not be null", null);
}
} ,2000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment