Hello World, my first post has been thrown!
The purpose of this blog is to share codes and opinions about Javascript or anything related to technology (which include but is not limited to WEB stuff and jQuery plugins)
Let’s see how it goes!
//Testing "code" tag
//Array Remove - By John Resig (MIT Licensed)
Array.prototype.remove = function(from, to) {
var rest = this.slice((to || from) + 1 || this.length);
this.length = from < 0 ? this.length + from : from;
return this.push.apply(this, rest);
};