I recognize that I can access the value of an object within an array by passing in the key name, like so:
JavaScript
x
2
1
const batchNumValue = batchNumber[0]['MAX(batch_number) + 1'];
2
In my case I know the array will always contain exactly one object, with a single key/value pair, like so:
JavaScript
1
2
1
[{ 'MAX(batch_number) + 1' : 234 }]
2
That being the case, my question is, is there a way I can pass in a variable representing whatever that key name happens to be? Or does one have to always explicitly pass the key name, even in a situation like this?
Advertisement
Answer
You could get the values from the object and take the first item.
JavaScript
1
5
1
const
2
data = [{ 'MAX(batch_number) + 1' : 234 }],
3
value = Object.values(data[0])[0];
4
5
console.log(value);