var obj = { first: 'someVal', second: 'otherVal' }; alert(Object.keys(obj)[0]); // returns 'first' alert(Object.keys(obj)[1]); // returns 'second'