Quiz
In this lesson, we will solve a quiz related to the concepts covered in the previous lesson
We'll cover the following...
We'll cover the following...
Technical Quiz
1.
What is the correct output of the following code?
function func() {
let promise = Promise.resolve(1);
let result = await promise;
}
func();
A.
1
B.
true
C.
undefined
D.
SyntaxError
1 / 2
We’ll ...