canvas.width = newWidth;
canvas.height = newHeight;
function Test() {
this.abc = 123;
this.obj = {
try: function() { console.log(this.abc) }
}
this.callTryFromObj = function() {
this.obj.try.apply(this);
}
}
const t = new Test();
t.callTryFromObj();
**/*
? Понятно что одна звезда это "всё"