Is it possible to use operators like map filter etc with promises

0 votes
Can you tell me Is it possible to use operators like map, filter etc with promises
Mar 19 in Node-js by Ashutosh
• 24,610 points
45 views

1 answer to this question.

0 votes

No, you cannot directly use map, filter, etc., on a Promise itself because these operators are meant for arrays, not Promises.

Firstly, wait for the Promise to resolve then use the array methods:

const promise = Promise.resolve([1, 2, 3]);

promise.then(array => {

  const result = array.map(x => x * 2);

  console.log(result); // [2, 4, 6]

});

answered Mar 24 by anonymous

Related Questions In Node-js

0 votes
1 answer

How to use MongoDB with promises in Node.js?

Hello @kartik, Try this: var MongoClient = require('mongodb').MongoClient var url ...READ MORE

answered Oct 12, 2020 in Node-js by Niroj
• 82,840 points
1,609 views
0 votes
1 answer

Is it possible to handle React events using the Chrome extension?

Yes, it's possible to handle React events ...READ MORE

answered Feb 22 in Node-js by Kavya
59 views
0 votes
1 answer
0 votes
1 answer

How to use an include with attributes with sequelize?

Hello @kartik, Something like this should work foo.findAll({ ...READ MORE

answered Oct 13, 2020 in Node-js by Niroj
• 82,840 points
15,440 views
0 votes
1 answer

How to create a hidden input field in a form in HTML?

You can use the type attribute with ...READ MORE

answered Mar 24 in HTML by anonymous
55 views
0 votes
0 answers
0 votes
1 answer

How to create a table with zebra-striped rows using inline styles in HTML?

To create a zebra-striped table using inline ...READ MORE

answered Mar 24 in HTML by anonymous
66 views
0 votes
1 answer

How can I override Bootstrap CSS styles?

You can override Bootstrap CSS styles using ...READ MORE

answered Mar 24 in Node-js by anonymous
51 views
0 votes
1 answer

How to use ngIf with else?

You can use *ngIf with else to ...READ MORE

answered Feb 26 in Node-js by Navya
75 views
0 votes
1 answer
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP