Skip to content

Instantly share code, notes, and snippets.

@Igor-Lopes
Last active May 1, 2017 04:31
Show Gist options
  • Save Igor-Lopes/8fdac5531672e85aeadf19724f6cbc8c to your computer and use it in GitHub Desktop.
Save Igor-Lopes/8fdac5531672e85aeadf19724f6cbc8c to your computer and use it in GitHub Desktop.
Simple Promise example
function getTime(date) {
return $q(function(resolve, reject) {
resolve(date.getTime());
});
}
var promise = getTime(new Date());
promise.then(function(data) {
//Code here
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment