Hello World!

Posted: Friday February 10th, 2012 in Misc

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);
};

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>