I have a multidimensional array of promises that I'm trying to resolve. If I console.log the result I can view the arrays and within each one is the promise along with a [[PromiseStatus]] and a [[PromiseValue]]. How do I get the promise value?
Here's a snippet of code:
(resourcePromises is just a multidimensional array of promises).
Promise.all(resourcePromises).then(function(values)
{
console.log(values);
});
And then the variable values will hold multiple arrays, and within each of those arrays is a list of promises that I'm trying to grab the values from.