Well done!
You have completed Arrow and Recursive Function Quiz!
Quiz Question 1 of 6
Why might arrow functions be particularly useful in a scenario where you are using the this
keyword within nested functions?
Choose the correct answer below:
-
A
Arrow functions automatically bind
this
to the global object. -
B
Arrow functions are more efficient because they create their own
this
context. -
C
Arrow functions do not have their own
this
context and inherit it from the enclosing scope. -
D
Arrow functions require the explicit binding of
this
using.bind()
method.