Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Asynchronous Programming with JavaScript Understanding Promises Create a Promise

Chike Onyema
Chike Onyema
6,190 Points

Error: "resolve not defined"

Hello there! Could anyone please help with this... I've typed out the code exactly as Guil described in the video:

// Code start

const newPromise = new Promise( (resolve, reject), setTimeout(() => { resolve("Your order is ready!"); }, 3000) );

console.log(newPromise);

newPromise.then((val) => console.log(val));

// Code end

However I get an error in return when I run it in the workspace and on vscode:

(resolve, reject), ^

ReferenceError: resolve is not defined

2 Answers

Blake Larson
Blake Larson
13,014 Points

You want the promise to take a arrow function with a resolve and reject. You have to change..

const newPromise = new Promise( (resolve, reject), setTimeout(() => { resolve("Your order is ready!"); }, 3000) );

to

const newPromise = new Promise( (resolve, reject) => setTimeout(() => { resolve("Your order is ready!"); }, 3000) );
Chike Onyema
Chike Onyema
6,190 Points

Ahhh! Thank you so much! I completely missed that... It worked :-)