Challenge: Bind Function
This challenge will test your understanding of rest parameters and their use in implementing the "bind" function in JavaScript.
We'll cover the following...
We'll cover the following...
Problem statement #
Create a function, bind
, that is equivalent to Function.protototype.bind
.
Function.protototype.bind
returns a new function whose this
value can be set to the ...