...

/

Quiz: Introduction to TypeScript

Quiz: Introduction to TypeScript

Test your understanding of the basics of TypeScript.

We'll cover the following...
Technical Quiz
1.

What will be the output of the following code?

const obj = {
 a: 3
};
obj.a = 4;
console.log(obj.a);

A.

0

B.

3

C.

4

D.

Compilation error


1 / 10
...