๐ง under construction -> function context
JS โฉ value โฉ function โฉ forwarding
Passing all arguments along with the context to another function is called call forwarding.
function f() { // forward call to g() return g.apply(this, arguments); }
js.info โฉ func.apply โญ๏ธ
Function.prototype.apply()
Last updated 1 year ago