Its kinda weird Javascript Array class does not offer last method to retrieve the last element of array. I know the solution is too simple (Ar[Ar.length-1] ) but still this is too frequently used.
Any serious reasons why this is not incorporated yet?

item= array.pop();. – bobince Jul 13 '10 at 8:08