ES6 - Create a JavaScript Promise

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

const myPromise = new Promise((resolve, reject) => {

});


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36 Edg/104.0.1293.47

Challenge: ES6 - Create a JavaScript Promise

Link to the challenge:

Your promise is syntactically correct but the instructions call for you to give it a specific name

const myPromise = makeServerRequest ((resolve,reject)=>{

});

Im adding the comments to just to explain things THIS IS NOT CORRECT SYNTAX
hope this helps to better understand

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.