Skip to content

Instantly share code, notes, and snippets.

@NRDay
NRDay / artists.js
Created September 3, 2020 09:20
Promises in forEach loop
// Create any artists that are not in the DB and return complete array of all artists
export function createArtists(artists) {
var updatedArtists = [];
return new Promise( function( resolve, reject ) {
artists.forEach( artist => {
if (! artist.id) {
// If the artist has no id - create it