Javascript Flashcards

1
Q

What do we use when expressing unavailability?

A

null

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

Cuando se puede usar any?

A
  • Para capturar valores dinamicos
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Como se puede dar el cambio de valores en el tiempo?

A
  • APIs externas

- Librerias de terceros

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

Que representa void?

A

La ausencia de type. Es lo opuesto de any.

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

Como se usa comunmente void?

A

Como tipo de retorno en funciones.

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

De quien son subtipos null y undefined?

A

De void

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

Cuando se usa el tipo never?

A

Cuando se esta seguro que no se va a retornar ningun valor.

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

Cual es la diferencia entre void y never?

A

void puede recibir los valores null o undefined.

never no puede recibir ningun valor.

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

Que hace este comando?

$tsc src/type.ts –strictNullChecks

A

Verifica donde se esta usando null o undefined en el codigo

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

En donde se puede habilitar strictNullChecks?

A

tsconfig.json

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

Cual es la diferencia entre Object y object?

A

Object es una instancia de la clase Object de javascript.

object es un tipo para valores no primitivos.

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

Con este tipo no se puede acceder a las propiedades del objeto.

A

object

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

Que estructura de datos es esta?

var person: [number, string, boolean] = [1, “Steve”, true];

A

tupla

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

Que es un enum?

A

es un objeto que enumera las propiedades en orden secuencial.

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

Como se compila todo un proyecto en watch mode?

A

$tsc –init

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

Que hace $tsc –init ?

A

Crea el tsconfig.json