es6-arrow-functions Flashcards

1
Q

What is the syntax for defining an arrow function?

A

() optional => (single line implicit return)

() =>{return} –> multiple line it is explicit return

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

When an arrow function’s body is left without curly braces, what changes in its functionality?

A

the function can run without the return statement

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

How is the value of this determined within an arrow function?

A

Where the function is defined.

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