Prototype:
var array = [1,2,3,4]; var lastEl = array.last();
Anything similar to this in jQuery?
|
|
|
Why not just use simple javascript?
You can write it as a method too, if you like (assuming prototype has not been included on your page):
|
|||||||||||||||||
|
|
with slice():
with pop();
see https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array for more information |
|||||
|
|
When dealing with a jQuery object, Of course, you can wrap a native array with jQuery leading to this:
|
|||
|
|
|
If u use the prototype on arrays like:
using forloops will do this.
|
|||
|
|
|
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. |
|||||||
|
|
For arrays, you could simply retrieve the last element position with
In jQuery you have the :last selector, but this won't help you on plain arrays. |
|||
|
|