Difference between revisions of "Promise object (JavaScript)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
Line 37: Line 37:
 
* [https://scotch.io/tutorials/understanding-javascript-promises-pt-i-background-basics Understanding JavaScript Promises, Pt. I: Background & Basics] by Peleke Sengstacke
 
* [https://scotch.io/tutorials/understanding-javascript-promises-pt-i-background-basics Understanding JavaScript Promises, Pt. I: Background & Basics] by Peleke Sengstacke
 
* [https://tc39.github.io/ecma262/#sec-promise-objects Promise Objects] - ECMAScript 2017 Language Specification
 
* [https://tc39.github.io/ecma262/#sec-promise-objects Promise Objects] - ECMAScript 2017 Language Specification
 +
* [http://www.codemag.com/article/1401061 The Simplest Thing Possible: Promises in JavaScript] by John V. Petersen
  
  

Revision as of 08:20, 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