Подскажите, почему не отображается второй объект (char2) в canvas.
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
var sett = function(x,y){
this.x = x;
this.y = y;
};
sett.prototype.show = function(){
ctx.fillRect(this.x,this.y, 20,20);
ctx.fillStyle="black";
};
var char = new sett(0,0);
char.show()
var char2 = new sett(100,200);
char2.show()