ON

Соответственно к каждому покемону прикреплено свое фото, описание и тд. Надо как-то мапать.
Size: a a a
ON
DM
ON
el
UT
bind
, or if the thisArg is null or undefined, the this
of the executing scope is treated as the thisArg for the new function.function f() {
console.log( this ); // null
}
let user = {
g: function() {
console.log("thisG" + this); // thisG[object Object]
return f.bind(null)();
}
};
DM
null
, то this будет null
R
bind
, or if the thisArg is null or undefined, the this
of the executing scope is treated as the thisArg for the new function.function f() {
console.log( this ); // null
}
let user = {
g: function() {
console.log("thisG" + this); // thisG[object Object]
return f.bind(null)();
}
};
R
DM
null
в JS - это объект )AP
null
в JS - это объект )DM
AP
R
AP
VP
el