Hi im new to javascript so don't mind me!
I have this object const obj = {'name': ['jack', 'ric'], 'age': 30}
if i do like this console.log(obj[Object.keys(obj)[0]]);
i will get ['jack', 'ric']
. How can I get only jack
without 'ric' and quote outside?