fix bug in step2-01 demos

This commit is contained in:
Elizabeth Craig
2019-03-01 11:56:11 -08:00
parent 8fa8167880
commit 34a25c7afd

View File

@@ -50,6 +50,12 @@ function makePromise() {
return Promise.resolve(5);
}
// TODO: call makePromise() using await syntax and log the results
// TODO: create a new async function
async function run() {
// TODO: call makePromise() using await syntax and log the results
// TODO: call your new async function
}
run();