JS Variables Flashcards

1
Q

Variable

A

Valores que se guardan en un nombre por lo regular, son etiquetas para un valor

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

= is the assignment operator.

A

Asigna el valor que se le quiere dar a una variable

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

Formas de declarar una variable

A

Con var, let y const.
var es global
let es local con scope
const es una variable que no tiene planeado cambiarse de valor

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

String concatenation

A

Es usar el operador de + para unir dos strings

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

String interpolation

A

Usar strings reservadas en variables en el output

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

Operator typeof

A

Sirve para saber que tipo de data es alguna variable

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