Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

forEach + push <=> map #30

Open
eliasmalik opened this issue Mar 29, 2018 · 0 comments
Open

forEach + push <=> map #30

eliasmalik opened this issue Mar 29, 2018 · 0 comments
Labels

Comments

@eliasmalik
Copy link

eliasmalik commented Mar 29, 2018

jeth/src/logic.js

Lines 4 to 18 in 55aa475

const filter = (data) => {
// FILTER OUT DATA
const filteredData = [];
data.forEach((obj) => {
const filteredObj = {};
filteredObj.title = obj.title;
filteredObj.location = obj.location;
filteredObj.type = obj.type;
filteredObj.company = obj.company;
filteredObj.url = obj.url;
filteredData.push(filteredObj);
});
return filteredData;
};

Using forEach to push items onto a new array is almost always equivalent to using a map.

data.map(job => ({
  title: job.title,
  ...
}))

The only case where it's not equivalent is if there's conditional logic in the body of the forEach callback which results in fewer or more elements in the new array than the original (in this case you can use reduce instead).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants