var obj = { first: 'someVal' }; obj[Object.keys(obj)[0]]; //returns 'someVal' Object.values(obj)[0]; // returns 'someVal'