This commit is contained in:
Elizabeth Craig 2019-03-01 11:56:11 -08:00
Родитель 8fa8167880
Коммит 34a25c7afd
1 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -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();