ES6 Promise

Promoise is for asynchronous programming. Javascript is the language for the client side of web and in most of the cases the execution of the program waits for the completion of an asynchronous request to the server. Promoise replaces Callback Funcions and is a first class representation of the value returned by the asynchronous operation.

Share