Last active

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist

Node.js, The Bad Parts

View promise.js
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
//Example using a feasible
//implementation of Promise
function mapValues(){
var list = [1,2,3,4,5,6];
//doSomeAsyncTask returns a
//promise of type
//Promise[Array[Int]]
var values = doSomeAsyncTask(list);
//The map function will be executed
//when the promise is resolved
var mapped = values.map(Math.round);
//returns a promise of mapped values
return mapped;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.