Skip to content

Instantly share code, notes, and snippets.

@getify
Created February 20, 2014 22:34
Show Gist options
  • Save getify/9124710 to your computer and use it in GitHub Desktop.
Save getify/9124710 to your computer and use it in GitHub Desktop.
sync, not async
// because of the "async precedent" of promises,
// expect: a,b,c
// get: a,c,b
console.log("a");
var p = new Promise(function(resolve,reject){
console.log("c");
});
console.log("b");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment