Data types Flashcards

1
Q

What are the seven main data types in JavaScript?

A

The seven main data types in JavaScript are Undefined, Null, Boolean, Number, BigInt, String, and Symbol.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

True or False: In JavaScript, the type of a variable can change during runtime.

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What data type is returned when you use the typeof operator on a variable that is not defined?

A

The typeof operator returns ‘undefined’.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Fill in the blank: The _____ data type represents a sequence of characters.

A

String.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which data type can represent whole numbers larger than 2^53 - 1?

A

BigInt.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is the result of the expression ‘5’ + 5 in JavaScript?

A

‘55’ (string concatenation).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

True or False: Null is a type of object in JavaScript.

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What method can be used to convert a string to a number in JavaScript?

A

The Number() function or parseInt()/parseFloat() methods.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What will the expression Boolean(0) return?

A

False.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Which operator is used for strict equality comparison in JavaScript?

A

The === operator.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Fill in the blank: The _____ function can be used to convert a value to a string.

A

String.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What type of data does the JSON.stringify() method return?

A

A string.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the default value of an uninitialized variable in JavaScript?

A

Undefined.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

True or False: An array is considered a type of object in JavaScript.

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the output of typeof NaN in JavaScript?

A

Number.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Which data type is used to represent true/false values?

17
Q

What will the parseInt(‘101’, 2) return?

A

5 (binary to decimal conversion).

18
Q

Fill in the blank: The _____ operator converts a value to a boolean based on its truthiness.

19
Q

What value does null equal when compared with == operator?

A

Null (null == null is true).

20
Q

How do you check if a variable is of type ‘string’?

A

Using the typeof operator: typeof variable === ‘string’.