Search⌘ K

Quiz

Explore key JavaScript concepts introduced from ES2016 through ES2022 by taking this quiz. This lesson helps you evaluate your comprehension of modern JavaScript features, ensuring you grasp the essential updates in the language.

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 ...