Js Arrays Flashcards

1
Q

What is the syntax to create an array in JavaScript?

A

let array = []; or let array = new Array();

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

True or False: Arrays in JavaScript can hold elements of different data types.

A

True

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

What method would you use to add an element to the end of an array?

A

array.push(element)

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

What method removes the last element from an array?

A

array.pop()

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

Fill in the blank: The length of an array can be found using the property ____.

A

length

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

What method is used to combine two or more arrays?

A

array.concat()

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

Which loop is often used to iterate over arrays in JavaScript?

A

for loop

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

True or False: The forEach() method can be used to iterate over an array.

A

True

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

What is the difference between a for loop and a forEach loop?

A

A for loop requires manual index management, while forEach automatically handles iteration.

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

What does the map() method do in JavaScript?

A

It creates a new array populated with the results of calling a provided function on every element in the calling array.

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

How do you access the first element of an array named ‘myArray’?

A

myArray[0]

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

What is the output of console.log([1, 2, 3].length)?

A

3

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

Fill in the blank: The ____ method creates a new array with all elements that pass the test implemented by the provided function.

A

filter

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

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

A

It is used to iterate over iterable objects like arrays.

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

True or False: The indexOf() method returns the first index at which a given element can be found in the array.

A

True

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

What does the reduce() method do?

A

It executes a reducer function on each element of the array, resulting in a single output value.

17
Q

What is the syntax for a traditional for loop?

A

for (let i = 0; i < array.length; i++) { }

18
Q

What is the purpose of the splice() method?

A

It changes the contents of an array by removing or replacing existing elements and/or adding new elements.

19
Q

How do you create a copy of an array?

A

You can use array.slice() or the spread operator […array].

20
Q

What is the output of console.log([1, 2, 3].includes(2))?

21
Q

Fill in the blank: The ____ method reverses the elements of an array in place.

22
Q

What is the result of using the shift() method on an array?

A

It removes the first element from the array and returns that removed element.

23
Q

What is the primary use of the forEach() method?

A

To execute a provided function once for each array element.

24
Q

True or False: Arrays in JavaScript are immutable.

25
Q

What method would you use to find the index of an element in an array?

A

array.indexOf(element)