Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you get the first element from an array:

var ary = ['first', 'second', 'third', 'fourth', 'fifth'];

I tried this:

alert($(ary).first());

But it would return [object Object].

So I need to get the first element from the array which should be the element first.

share|improve this question

6 Answers

up vote 20 down vote accepted

like this

alert(ary[0])
share|improve this answer
Simplicity. :o) – Brett Rigby Mar 1 '12 at 10:34

Why are you jQuery-ifying a vanilla JavaScript array? Use standard JavaScript!

var ary = ['first', 'second', 'third', 'fourth', 'fifth'];
alert(ary[0]);

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array

Also, needs more jQuery

Source, courtesy of bobince

share|improve this answer

If you want to preserve the readibility you could always add a first function to the Array.protoype:

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

A then you could easily retrieve the first element:

[1, 2, 3].first();
> 1
share|improve this answer

Try alert(ary[0]);.

share|improve this answer

When there are multiple matches, JQuery's .first() is used for fetching the first DOM element that matched the css selector given to jquery.

You don't need jQuery to manipulate javascript arrays.

share|improve this answer

Element of index 0 may not exist if the first element has been deleted
Prove it in your browser console:

var a=['a','b','c'];
delete a[0];
for(var i in a){console.log(i+' '+a[i]);}

Better way to get the first element without jQuery:

function first(p){for(var i in p)return p[i];}
first(a);
share|improve this answer
a.entries()[0] should do it :) – Edson Medina Sep 13 '12 at 11:35
That's because you shouldn't use that kind of for enumeration with an array, as it's enumerating objects and not array members. Use indexing with a traditional for loop instead. – Oskar Duveborn Feb 25 at 12:57

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.