Apply and arrays Method Using Three tricks For Javascript
Apply and arrays: three tricks The apply method apply is a method that all functions have. Its signature is func.apply(thisValue, [arg1, arg2, …]) Ignoring thisValue, the above invocation is equivalent to: func(arg1, arg2, …) So, apply lets us unwrap an…
Read More