Let,Const,Var Flashcards

1
Q

What keyword is used to declare a variable that can be reassigned in JavaScript?

A

var

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

True or False: ‘let’ allows variable declaration with block scope.

A

True

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

What happens if you try to reassign a variable declared with ‘const’?

A

It throws a TypeError.

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

What is the main difference between ‘let’ and ‘var’?

A

‘let’ has block scope, while ‘var’ has function scope.

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

What will be the output of ‘console.log(x)’ if ‘var x = 10;’ is declared after the log statement?

A

undefined

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

Fill in the blank: Variables declared with ‘let’ are not hoisted to the top of their block; this is known as ‘______’.

A

temporal dead zone

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

What is the scope of a variable declared with ‘let’ inside a loop?

A

Block scope

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

Can a variable declared with ‘var’ be redeclared in the same scope?

A

Yes

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

What is the output of ‘const a = 5; a = 10;’?

A

TypeError

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

Which of the following can be declared without initializing a value: ‘let’, ‘const’, or ‘var’?

A

‘let’ and ‘var’

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

What is the scope of ‘const’?

A

Block scope

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

What will happen if you declare a variable with ‘let’ and ‘var’ in the same scope?

A

It will cause a SyntaxError for ‘let’.

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

What is hoisting in JavaScript?

A

The behavior of moving declarations to the top of their scope.

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

True or False: You can use ‘let’ to create global variables.

A

True

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

What is the primary purpose of using ‘const’ in JavaScript?

A

To prevent reassignment of a variable.

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