Javascript Array firstElement()
firstElement()
Array.prototype.firstElement = function() { return Array[0]; };
Array.prototype.firstElement = function() { return this[0]; }