Skip to content

Instantly share code, notes, and snippets.

@JulianSoto
Created July 18, 2019 03:13
Show Gist options
  • Save JulianSoto/cd7f81772550441e38787bf383320119 to your computer and use it in GitHub Desktop.
Save JulianSoto/cd7f81772550441e38787bf383320119 to your computer and use it in GitHub Desktop.
const func = async (arr) => {
let arrCopy = [];
arr.forEach(item => {
const newItem = someAsyncFunc(item);
arrCopy.push(newItem);
});
return arrCopy;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment