JavaScript Functions Flashcards

1
Q

Function declarations

A

Se crean utilizando el keyword function y el parentesis

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

llamar una Function

A

Se hace con el nombre de la function y el parentesis pero ya sin el keyword function

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

Parameters y Arguments

A

Los parametros van en la declaracion de las functions y los arguments van en el llamado

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

Default parameters

A

Se asigna por defecto a un parameter un valor

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

Return en Functions

A

Es lo que se regresa resultado del function

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

Helper Functions

A

Es usar una function dentro de otra para hacer la ayuda de la otra

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

Function expressions

A

Son variables que solo contienen functions anonimas

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

Arrow Functions

A

Se utiliza => en vez de la keyword function este tipo de function tiene implicit return

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