DOM Flashcards

1
Q

What does querySelector do?

A

It returns the first element that matches a given CSS selector.

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

How does querySelectorAll differ from querySelector?

A

querySelectorAll returns all matching elements as a NodeList, while querySelector returns only the first match.

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

What type of object does querySelectorAll return?

A

A NodeList, which can be iterated using forEach.

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

How do you select an element with id ‘header’?

A

document.getElementById('header')

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

What is the difference between getElementsByClassName and querySelectorAll?

A

getElementsByClassName returns a live HTMLCollection, while querySelectorAll returns a static NodeList.

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

How do you select the first element with class ‘btn’?

A

document.querySelector('.btn')

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

How do you select all paragraphs using querySelectorAll?

A

document.querySelectorAll('p')

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

How do you access the second element in a getElementsByClassName collection?

A

document.getElementsByClassName('className')[1]

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

What is returned when getElementById doesn’t find a matching element?

A

It returns null.

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

Can you modify elements inside getElementsByClassName directly?

A

Yes, you can access elements using index and modify them like an array.

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

“How do you remove an element directly from the DOM?”

A

“Use element.remove() method.”

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

“What happens when you use removeChild()?”

A

“It removes a specified child element from its parent.”

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

“Write a code snippet to remove an element with id ‘box’.”

A

document.getElementById('box').remove();

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

“How do you remove all child elements of a parent element?”

A

“Set parent.innerHTML = "";

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

“What does replaceChild() do?”

A

“It replaces an existing child element with a new one.”

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

“Write a code snippet to replace a div with a paragraph.”

A

let newPara = document.createElement('p'); newPara.textContent = 'New Content'; document.getElementById('container').replaceChild(newPara, document.getElementById('oldDiv'));

17
Q

“Can you use remove() on multiple elements at once?”

A

“No, remove() works on a single element. Use loops to remove multiple elements.”

18
Q

“What happens if removeChild() is called on an element not present in the parent?”

A

“It throws a NotFoundError.”

19
Q

“How do you create a new element in JavaScript?”

A

“Use document.createElement('tagName').”

20
Q

“Write a code snippet to create a new <div> element.”

A

let newDiv = document.createElement('div');

21
Q

“How do you add a newly created element to the DOM?”

A

“Use parent.appendChild(newElement).”

22
Q

“Write a code snippet to append a new <p> inside an element with id ‘container’.”

A

let p = document.createElement('p'); p.textContent = 'Hello!'; document.getElementById('container').appendChild(p);

23
Q

“What does insertBefore() do?”

A

“It inserts a new element before a specified child of a parent element.”

24
Q

“Write a code snippet to insert a new <span> before an existing <div>.”

A

let span = document.createElement('span'); span.textContent = 'New!'; parent.insertBefore(span, existingDiv);

25
Q

“What is the downside of using innerHTML for inserting elements?”

A

“It can introduce security risks (XSS) and overwrite existing content.”

26
Q

“How do you replace an element using JavaScript?”

A

“Use parent.replaceChild(newElement, oldElement).”