You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// the original function was already loading the images in parallel since it's synchronous and it doesn't wait for the promise (loadImage) to resolve before calling another
// the original function appended the poster to the page if it loaded while this one will have to wait for all to finish
// the original was unintentially better. and if i add a then inside promise.all to append the image then what was the use of promise.all