Skip to content
Advertisement

JS/TS: Getting access to a value wrapped in a promise?

I have an Object where the key is a stringified object and the value is a Promise that eventually resolves to a font object.
I use Promise.all to wait for them all to resolve.

After this, I log the object in console and it looks like:

JavaScript

I want to enumerate through the object to ensure each postscript name in they key matches the one in the value:

JavaScript

my problem is: myObj[font].postscriptName is empty because it’s wrapped in a Promise. How can I get access to that?

Advertisement

Answer

You would use .then:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement