Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
var x = (function(){}).call; console.log(typeof x); // function x(this); // Uncaught TypeError: x is not a function
var x = function(){}; console.log(typeof x); // function x.call;
const fn = function(arg){ console.log(arg) }; const x = fn.call; x.bind(fn)(this, 42); x.call(fn, this, 42);
var x = (function(){}).call x.prototype; // undefined
var x = console.log; x.prototype; // undefined x(123) // 123