Understanding _.invoke
August 30, 2015
In order to be able to understand how invoke works, I first had to do a bit of research on Javascript’s apply method. Apply is one of the most often used Function methods, as it calls a function with a given this value and a single array (or array-like object) of arguments. Apply is especially useful because you don’t have to know the . . .