Skip to content

Instantly share code, notes, and snippets.

@malintha
Last active June 7, 2016 05:19
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/61fc625fdf7a084ebfacf749d732924f to your computer and use it in GitHub Desktop.
Save malintha/61fc625fdf7a084ebfacf749d732924f to your computer and use it in GitHub Desktop.
find([1,2], function(results) {
alert("Found other elements "+results);
});
alert("Meanwhile I show up");
function find(elements, callback) {
//The time consuming operation
setTimeout(function() {
elements.push(3,4,5);
callback(elements);
} ,2000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment