๐Ÿ“š Reference


๐Ÿ“œ Chapter


apply

bind

call


var example = function (a, b, c) {
  return a + b + c;
};

example(1, 2, 3);
example.call(null, 1, 2, 3);
example.apply(null, [1, 2, 3]);