Difference between revisions of "Promise object (JavaScript)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
Line 8: Line 8:
 
== External links ==
 
== External links ==
  
 
+
* [https://developers.google.com/web/fundamentals/primers/promises/?hl=en Promises | Web fundamentals] - Promises have arrived natively in JavaScript
 +
* [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise Promise] @ developer.mozilla.org
 +
* [https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/all Promise.all()] @ developer.mozilla.org
 +
* [https://davidwalsh.name/promises JavaScript Promise API] by David Walsh
 +
* [http://www.html5rocks.com/en/tutorials/es6/promises/ JavaScript Promises] by Jake Archibald
 +
* [http://www.datchley.name/es6-promises/ ES6 Promises] by Dave Atchley
 +
* [https://www.sitepoint.com/overview-javascript-promises/ Overview of JavaScript Promises] by Sandeep Panda
 +
* [http://exploringjs.com/es6/ch_promises.html Promises for asynchronous programming] @ exploringjs.com
 +
* [http://javascriptplayground.com/blog/2015/02/promises/ Embracing Promises in JavaScript]
 +
* [http://stackoverflow.com/questions/21866986/using-javascript-native-promises-resolve-a-promise-after-thenables-attached Using Javascript native promises, resolve a promise after thenables attached] @ Stack Overflow
 +
* [http://stackoverflow.com/questions/21564993/native-support-for-promises-in-node-js Native Support for Promises in Node.js] @ Stack Overflow
 +
* [https://60devs.com/best-practices-for-using-promises-in-js.html Best Practices for Using Promises in JS] by Oleksii Rudenko
 +
* [http://dailyjs.com/2014/02/20/promises-in-detail/ JavaScript Promises ... In Wicked Detail] by Matt Greer
 +
* [https://html5hive.org/how-to-chain-javascript-promises/ How to Chain JavaScript Promises – Intro Tutorial to JavaScript Promises] by Pablo Farias Navarro
 +
* [https://pub.clevertech.biz/native-javascript-promises-vs-bluebird-9e58611be22#.w9v7jbqko Native Javascript Promises vs Bluebird] by Nazar Aziz
 +
* [https://codepen.io/underthex/pen/yHaAC Pure JS Promise (Native)] by Stenly Tan
 +
* [http://engineering.pivotal.io/post/tdd-js-native-promises/ Testing JavaScript's native Promises] by Paul Meskers
 +
* [https://www.youtube.com/watch?v=104J7_HyaG4 How to Use Javascript Promises] by Jordan Leigh @ YouTube
 +
* [https://msdn.microsoft.com/en-us/library/dn802826(v=vs.94).aspx Promise Object (JavaScript)] @ MSDN
 
* [http://caniuse.com/#feat=promises Can I Use Promises?] @ caniuse.com
 
* [http://caniuse.com/#feat=promises Can I Use Promises?] @ caniuse.com
  
== External links ==
 
  
  
 
[[Category: JavaScript promises]]
 
[[Category: JavaScript promises]]

Revision as of 07:30, 25 September 2016

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

See also

External links