ДУ
Size: a a a
ДУ
ЛХ
IS
ЛХ
ЛХ
ДУ
V
ЛХ
ДУ
IS
j
function f (a, b) {
return a + b
}
function execCallback (callback) {
return callback()
}
execCallback(() => f(2, 2))
execCallback(f.bind(null, 2, 2))
ЛХ
IS
function f (a, b) {
return a + b
}
function execCallback (callback) {
return callback()
}
execCallback(() => f(2, 2))
execCallback(f.bind(null, 2, 2))
j
ei
ДУ
IS
IS