Código:
  
Funciona bien cuando es un objeto simple. Pero como necesito muchos objetos del mismo tipo, no logro encontrar la forma.  A ver si alguien puede ayudarme. Gracias. function Objeto(){
	this.id;
	this.x;
	this.op1;
	this.op2;
}
var MiObjeto= new Objeto();
MiObjeto = new Array(50);
 

