How to get the first key of an object in TypeScript

2 Answers

0 votes
let person = {
    id: 838209872,
    name: "John",
    age: 46,
    city: "New York"
};
 
const firstKey: string = Object.keys(person)[0];
 
console.log(firstKey); 
 
  
     
/*
run:
 
"id" 
 
*/ 
 

 



answered Mar 2, 2025 by avibootz
0 votes
// Defining an interface to specify the structure of the object.
interface Person {
    id: number;
    name: string;
    age: number;
    city: string;
}

let person: Person = {
    id: 838209872,
    name: "John",
    age: 46,
    city: "New York"
};

const firstKey: string = Object.keys(person)[0];

console.log(firstKey);

   
     
/*
run:
 
"id" 
 
*/ 
 

 



answered Mar 2, 2025 by avibootz

Related questions

1 answer 155 views
1 answer 133 views
1 answer 127 views
1 answer 119 views
1 answer 121 views
1 answer 138 views
...