react / javascript Flashcards

1
Q

Que es una curried function?

A

function volume1(length) {

return function(width) {

return function(height) {

return height * width * length;

}

}

}

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

What is IIFE?

A

Immediately Invoked Function Expression

(function doubleNumber(num){

return num * 2

})(10);

Respuesta:

Una funcion entre parentesis, que luego del segundo parentesis, entre parentesis pasa el parametro en caso de requerirse.

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

Por que querria usar un IIFE (pronunciado ifi)?

A

Para preservar la privacidad de la funcion y evitar conflicto con otras variables globales

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

Que se puede escribir en una IIFE (pronunciado IFI)

A

Se comporta como un archivo, se pueden escribir funciones, variables, manteniendo la privacidad

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

Como crear react app?

A

npx create-react-app my-app

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

Como se agrega una css class en React?

A

ClassName

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