delete

delete

by electronoob

JavaScript

var w=100;
var h=100;
var e = [];
function p (x,y) {
	this.x = x;
  this.y = y;
}
e.push(new p(10,10));
e.push(new p(20,20));
e.push(new p(30,30));
e.push(new p(40,40));

console.log(e);

var qt = {};