Difference between revisions of "Promise object (JavaScript)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
Line 52: Line 52:
 
* [https://www.joezimjs.com/javascript/patterns-asynchronous-programming-promises/ Patterns for Asynchronous Programming With Promises]
 
* [https://www.joezimjs.com/javascript/patterns-asynchronous-programming-promises/ Patterns for Asynchronous Programming With Promises]
 
* [https://firebase.googleblog.com/2016/01/keeping-our-promises-and-callbacks_76.html Keeping our Promises (and Callbacks)] by Thomas Bouldin
 
* [https://firebase.googleblog.com/2016/01/keeping-our-promises-and-callbacks_76.html Keeping our Promises (and Callbacks)] by Thomas Bouldin
 +
* [https://jellekralt.com/2016/02/18/replacing-async-utilities-with-promises/ Replacing async utilities with native promises] by Jelle Kralt
 +
* [https://www.hacksrus.net/blog/2015/08/a-solution-to-swallowed-exceptions-in-es6s-promises/ A Solution To Swallowed Exceptions In ES6’s Promises]
 +
* [http://engineering.invisionapp.com/post/mastering-promises/ 8 Tips For Mastering Javascript Promises] by Scott Rippey
 +
* [http://codeutopia.net/blog/2016/06/29/the-best-resources-to-learn-about-javascript-promises/ The best resources to learn about JavaScript Promises]
 +
* [https://jsfiddle.net/adamboduch/jkvkzhqk/ Native Promise versus jQuery Deferred] by Adam Boduch @ jsfiddle
 +
* [https://codesi.nz/working-with-javascript-promises/ Working With Javascript Promises: Practices And Mistakes] @ by Adrian Oprea
 +
  
 
=== YouTube videos ===
 
=== YouTube videos ===
Line 60: Line 67:
 
* [https://www.youtube.com/watch?v=oa2clhsYIDY Promises in Javascript] by David M. Lee, II
 
* [https://www.youtube.com/watch?v=oa2clhsYIDY Promises in Javascript] by David M. Lee, II
 
* [https://www.youtube.com/watch?v=K6pihiILxrc Cleaning Up JavaScript Callbacks With Promises]
 
* [https://www.youtube.com/watch?v=K6pihiILxrc Cleaning Up JavaScript Callbacks With Promises]
 +
* [https://www.youtube.com/watch?v=g90irqWEqd8 Async JavaScript with Promises] by Kyle Robinson Young
  
  
 
[[Category: JavaScript]]
 
[[Category: JavaScript]]
 
[[Category: JavaScript promises]]
 
[[Category: JavaScript promises]]

Revision as of 09:02, 25 September 2016

In JavaScript, the promise object is a used to handle asynchronous tasks.

A promise is composable, making it more complex than a callback function.

See also

External links


YouTube videos