В
Size: a a a
В
ИГ
YK
YK
ИГ
YK
YK
ИГ
YK
Od
K
AE
K
AE
K
C
function bind(fn, context, ...rest) {
return function(...args) {
const uuid = Date.now().toString();
context[uuid] = fn;
const res = context[uuid](...rest, ...args);
delete context[uuid];
return res;
}
}
S
function bind(fn, context, ...rest) {
return function(...args) {
const uuid = Date.now().toString();
context[uuid] = fn;
const res = context[uuid](...rest, ...args);
delete context[uuid];
return res;
}
}
V
BD
BD