Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Prototype:

var array = [1,2,3,4]; var lastEl = array.last();

Anything similar to this in jQuery?

share|improve this question

6 Answers

up vote 47 down vote accepted

Why not just use simple javascript?

var array=[1,2,3,4];
var lastEl = array[array.length-1];

You can write it as a method too, if you like (assuming prototype has not been included on your page):

Array.prototype.last = function() {return this[this.length-1];}
share|improve this answer
because something like the following will not look good: $('a').attr('href').split('#').last(); <-- of course last() is not a jquery function here... it's just to make an example – Paul Jul 21 '09 at 15:47
7  
Looks good to me. Why do you say it doesn't? The call to .split() ends chain-ability so no loss there. – Ken Browning Jul 21 '09 at 15:50
I agree with Ken. Plus, does that look better than: $('a').attr('href').split('#')[$('a').attr('href').split('#').length-1], haha. – Salty Jul 21 '09 at 15:53
5  
This is wrong. If the array is empty, you are looking up array[-1] – DisgruntledGoat Apr 24 '11 at 16:32
1  
You didn't answer his question. Yes, raw javascript may be superior, but the question was a jQuery equivalent. Your proposed solution may produce undesired circumstances in some jQuery scenarios (experienced one myself) – DSKVR Jan 20 at 1:10
show 1 more comment

For arrays, you could simply retrieve the last element position with array.length - 1:

var a = [1,2,3,4];

var lastEl = a[a.length-1]; // 4

In jQuery you have the :last selector, but this won't help you on plain arrays.

share|improve this answer

with slice():

var a = [1,2,3,4];
var lastEl = a.slice(-1)[0]; // 4
// a is still [1,2,3,4]

with pop();

var a = [1,2,3,4];
var lastEl = a.pop(); // 4
// a is now [1,2,3]

see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array for more information

share|improve this answer
6  
Why not just .slice().pop() copy the array and pop an element off the copy? – gnarf Jul 22 '10 at 8:24

When dealing with a jQuery object, .last() will do just that, filter the matched elements to only the last one in the set.

Of course, you can wrap a native array with jQuery leading to this:

var a = [1,2,3,4];
var lastEl = $(a).last()[0];
share|improve this answer

If u use the prototype on arrays like:

Array.prototype.last = function() {return this[this.length-1];}

using forloops will do this.

var a = [0,1,2];
out --> 0
out --> 1
out --> 2
out --> last
share|improve this answer

I know the answer is already given, but I think I've got another solution for this. You could take the array, reverse it and output the first array item like this:

var a = [1,2,3,4];
var lastItem = a.reverse()[0];

Works fine for me.

share|improve this answer
Reversing the array just to get the last value is unnecesary expensive. Also, the original array gets modified. – Sergi Ramón Jun 20 '12 at 8:04
Method still returns last element. So I do not see reason for downvotes. +1 here. – Pawka Jul 3 '12 at 9:41
Thank you Pawka. – manticore Jul 7 '12 at 13:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.