Skip to content

Instantly share code, notes, and snippets.

@oravecz
Created July 6, 2014 01:08
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 oravecz/29cfc4980f3c8a96286c to your computer and use it in GitHub Desktop.
Save oravecz/29cfc4980f3c8a96286c to your computer and use it in GitHub Desktop.
Promises Presentation
(function() {
var a = 10;
setTimeout(function() {
a = a + 10;
}, 1000);
console.log('Value of a: ' + a);
}) ();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment