Difference between map and each on Promise bluebirdBluebird Promise serial iteration, and resolve to modified array?Is there a way to use Bluebird's Promise.each concurrently?Difference between == and === in JavaScriptWhat's the difference between using “let” and “var”?What is the difference between call and apply?For-each over an array in JavaScript?Differences between lodash and underscoreWhat is the difference between Bower and npm?How do I convert an existing callback API to promises?How do I access previous promise results in a .then() chain?What is the difference between Promises and Observables?Difference between `return await promise` and `return promise`

How to help my 2.5-year-old daughter take her medicine when she refuses to?

Do any aircraft carry boats?

Renewed US Passport, Did Not Receive Expired US Passport

Contract Employer Keeps Asking for Small Things Without Pay

My favorite color is blue what is your favorite color?

Can I say "I have encrypted something" if I hash something?

Is it appropriate for a professor to require students to sign a non-disclosure agreement before being taught?

Gas pipes - why does gas burn "outwards?"

Why didn't Thor use the All powerful spear instead of Stormbreaker?

Have there been any countries that voted themselves out of existence?

Where does the expression "triple-A" comes from?

Random point on a sphere

Are Co2 tire cartridges reusable for multiple tires?

Dividing Divisive Divisors

How can a resurrection system prevent the cheapening of death?

Are there any instances of members of different Hogwarts houses coupling up and marrying each other?

What does "synoptic" mean in avionics?

How do email clients "send later" without storing a password?

Writing a worded mathematical expression

How could a imperial dynasty keep a loose collection of pirates, raiders, etc unified?

Kingdom Map and Travel Pace

Is BitLocker useful in the case of stolen laptop?

Why does F + F' = 1?

Does the wording of the Wrathful Smite spell imply that there are other living beings that aren't considered "creatures"?



Difference between map and each on Promise bluebird


Bluebird Promise serial iteration, and resolve to modified array?Is there a way to use Bluebird's Promise.each concurrently?Difference between == and === in JavaScriptWhat's the difference between using “let” and “var”?What is the difference between call and apply?For-each over an array in JavaScript?Differences between lodash and underscoreWhat is the difference between Bower and npm?How do I convert an existing callback API to promises?How do I access previous promise results in a .then() chain?What is the difference between Promises and Observables?Difference between `return await promise` and `return promise`






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















What would be the difference between doing these two things:



Promise.map(myValues, async myValue => 
const owner = await findOwner(myValue);
return Promise.all([sendMessage(owner), sendMessageSpecific(owner)]);
)


and



Promise.each(myValues, async myValue => 
const owner = await findOwner(myValue);
sendMessage(owner)
sendMessageSpecific(owner)
)


I know both each and map return a Promise, but I can't figure out what would be the difference from a running perspective. It looks like with each there is no chance for concurrency, one promise happens after the other one, but I'm missing any other big differences between these two code snippets?










share|improve this question
























  • one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, with each If all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps

    – Jaromanda X
    Mar 28 at 8:45












  • Omitting the Promise.all call from sendMessage(owner) and sendMessageSpecific(owner) in the second snippet just makes it not work. This has nothing to do with each vs map though.

    – Bergi
    Mar 28 at 9:53











  • related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572

    – Bergi
    Mar 28 at 10:00

















0















What would be the difference between doing these two things:



Promise.map(myValues, async myValue => 
const owner = await findOwner(myValue);
return Promise.all([sendMessage(owner), sendMessageSpecific(owner)]);
)


and



Promise.each(myValues, async myValue => 
const owner = await findOwner(myValue);
sendMessage(owner)
sendMessageSpecific(owner)
)


I know both each and map return a Promise, but I can't figure out what would be the difference from a running perspective. It looks like with each there is no chance for concurrency, one promise happens after the other one, but I'm missing any other big differences between these two code snippets?










share|improve this question
























  • one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, with each If all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps

    – Jaromanda X
    Mar 28 at 8:45












  • Omitting the Promise.all call from sendMessage(owner) and sendMessageSpecific(owner) in the second snippet just makes it not work. This has nothing to do with each vs map though.

    – Bergi
    Mar 28 at 9:53











  • related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572

    – Bergi
    Mar 28 at 10:00













0












0








0








What would be the difference between doing these two things:



Promise.map(myValues, async myValue => 
const owner = await findOwner(myValue);
return Promise.all([sendMessage(owner), sendMessageSpecific(owner)]);
)


and



Promise.each(myValues, async myValue => 
const owner = await findOwner(myValue);
sendMessage(owner)
sendMessageSpecific(owner)
)


I know both each and map return a Promise, but I can't figure out what would be the difference from a running perspective. It looks like with each there is no chance for concurrency, one promise happens after the other one, but I'm missing any other big differences between these two code snippets?










share|improve this question














What would be the difference between doing these two things:



Promise.map(myValues, async myValue => 
const owner = await findOwner(myValue);
return Promise.all([sendMessage(owner), sendMessageSpecific(owner)]);
)


and



Promise.each(myValues, async myValue => 
const owner = await findOwner(myValue);
sendMessage(owner)
sendMessageSpecific(owner)
)


I know both each and map return a Promise, but I can't figure out what would be the difference from a running perspective. It looks like with each there is no chance for concurrency, one promise happens after the other one, but I'm missing any other big differences between these two code snippets?







javascript promise async-await bluebird






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 28 at 8:43









Hommer SmithHommer Smith

9,88641 gold badges123 silver badges218 bronze badges




9,88641 gold badges123 silver badges218 bronze badges















  • one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, with each If all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps

    – Jaromanda X
    Mar 28 at 8:45












  • Omitting the Promise.all call from sendMessage(owner) and sendMessageSpecific(owner) in the second snippet just makes it not work. This has nothing to do with each vs map though.

    – Bergi
    Mar 28 at 9:53











  • related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572

    – Bergi
    Mar 28 at 10:00

















  • one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, with each If all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps

    – Jaromanda X
    Mar 28 at 8:45












  • Omitting the Promise.all call from sendMessage(owner) and sendMessageSpecific(owner) in the second snippet just makes it not work. This has nothing to do with each vs map though.

    – Bergi
    Mar 28 at 9:53











  • related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572

    – Bergi
    Mar 28 at 10:00
















one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, with each If all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps

– Jaromanda X
Mar 28 at 8:45






one difference is concurrency - but I gathered that from reading the doucmenation, same as you - also in the documentation, with each If all of the iterations resolve successfully, Promise.each resolves to the original array unmodified. - not so with map, because maping maps

– Jaromanda X
Mar 28 at 8:45














Omitting the Promise.all call from sendMessage(owner) and sendMessageSpecific(owner) in the second snippet just makes it not work. This has nothing to do with each vs map though.

– Bergi
Mar 28 at 9:53





Omitting the Promise.all call from sendMessage(owner) and sendMessageSpecific(owner) in the second snippet just makes it not work. This has nothing to do with each vs map though.

– Bergi
Mar 28 at 9:53













related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572

– Bergi
Mar 28 at 10:00





related: stackoverflow.com/a/28737038/1048572, stackoverflow.com/a/40408505/1048572

– Bergi
Mar 28 at 10:00












0






active

oldest

votes










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);














draft saved

draft discarded
















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55393287%2fdifference-between-map-and-each-on-promise-bluebird%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes




Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.




















draft saved

draft discarded















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55393287%2fdifference-between-map-and-each-on-promise-bluebird%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴