Answers for "access the first three keys of an object"

1

javascript object first key

var person = {"name":"Steve","age":43};
var firstKeyValue = person[Object.keys(person)[0]]; //"Steve"
Posted by: Guest on October-19-2019

Code answers related to "access the first three keys of an object"

Code answers related to "Javascript"

Browse Popular Code Answers by Language