Js Loops Flashcards

1
Q

What is a loop in JavaScript?

A

A loop is a control structure that allows you to repeat a block of code multiple times.

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

True or False: Loops can only iterate over arrays.

A

False

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

What are the three main types of loops in JavaScript?

A

for loop, while loop, and do…while loop.

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

Fill in the blank: The ______ loop executes a block of code as long as a specified condition is true.

A

while

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

Which loop is guaranteed to execute at least once?

A

do…while loop

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

What is the syntax for a basic for loop?

A

for (initialization; condition; increment) { // code to be executed }

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

What does the ‘break’ statement do in a loop?

A

It terminates the loop and transfers control to the statement following the loop.

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

What does the ‘continue’ statement do in a loop?

A

It skips the current iteration and continues with the next iteration of the loop.

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

True or False: A for loop can be used to iterate over an object.

A

True

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

What will the following code output? for (let i = 0; i < 3; i++) { console.log(i); }

A

0, 1, 2

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

Which loop would you use when the number of iterations is known?

A

for loop

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

What is the difference between ‘while’ and ‘do…while’ loops?

A

‘while’ checks the condition before executing the loop, while ‘do…while’ checks after executing the loop.

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

Fill in the blank: The ‘for…in’ loop is used to iterate over the ______ of an object.

A

properties

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

What is the output of the following code? let arr = [1, 2, 3]; arr.forEach(num => console.log(num));

A

1, 2, 3

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

True or False: You can nest loops inside one another.

A

True

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

What is the purpose of the ‘for…of’ loop?

A

To iterate over iterable objects like arrays, strings, or collections.

17
Q

What will happen if the loop condition is always true?

A

It will create an infinite loop.

18
Q

How can you exit from an infinite loop in JavaScript?

A

By using the ‘break’ statement or stopping the execution in the environment.

19
Q

What keyword is used to declare a loop variable in a for loop?

20
Q

Fill in the blank: The ‘forEach’ method is available on ______.

21
Q

What will the following code print? for (let i = 0; i < 5; i++) { if (i === 3) break; console.log(i); }

22
Q

What is a common mistake when using loops with asynchronous code?

A

Not accounting for the asynchronous behavior, which can lead to unexpected results.

23
Q

True or False: The ‘for’ loop can be used to loop through a string.

24
Q

What does the following code do? for (let i = 0; i < 5; i++) { if (i % 2 === 0) continue; console.log(i); }

A

It prints odd numbers: 1, 3.

25
Q

What is the syntax for a ‘while’ loop?

A

while (condition) { // code to be executed }

26
Q

Which loop would you use if you need to execute code at least once regardless of the condition?

A

do…while loop