Предположим, что уже существуют и объект, и функция. function f(){} var o = {}; Выполнение кода: f.call(o, 1, 2); Равносильно следующему коду: om = f; om(1, 2); delete om;
Along the way, learning js stumbled upon this method, but essentially I can not understand. Maybe someone will give a good guide or explain what the joke is?