Hello World, meu primeiro post foi lançado!
O propósito deste blog é compartilhar códigos e opiniões sobre Javascript ou qualquer coisa relacionada à tecnologia (o que inclui mas não se limita a conteúdo WEB e plugins jQuery)
Vamos ver como fica!
//Testando a tag "code"
//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);
};