JavaScript Flashcards

1
Q

Quais os 6 tipos primitivos em JS?

A

String; number; boolean; null; undefined; symbol.

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

(DOM) - Quais os 6 seletores usados no JS?

A

1.getElementById
2.getElementsByTagName
3.getElementsByClassName
4.querySelectorAll
5.querySelector
6..getElementsByName

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

(DOM) - Quais dos seletores devolvem um NodeList?

A

querySelectorAll
getElementsByName

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

(DOM) - Quais dos seletores devolvem um HTMLCollection?

A

getElementsByTagName
getElementsByClassName

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

(DOM) - Quais dos seletores devolvem apenas 1 elemento?

A

querySelector
getElementById

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

(DOM) - Como criar um elemento novo no HTML usando o JS?

A
  1. Cria a função no HTML usando um evento Exemplo:onclick=”addInput()”
  2. Na função JS, selecionamos o elemento pai, criamos o elemento, definimos seus atributos, enviamos ele para que seja criado na árvore.
    Exemplo:
    ‘function addInput() {
    const ul = document.getElementById(‘inputs’)

const newLi = document.createElement(‘li’)
newLi.className = ‘list-item’
newLi.innerText = ‘Novo input: ‘

const newInput = document.createElement(‘input’)
newInput.type = ‘text’
newInput.name = ‘input’

newLi.appendChild(newInput)
ul.appendChild(newLi)
}

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