How to get the first key from a sorted key list of an object in TypeScript

2 Answers

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).sort()[0];

console.log(firstKey);
 
  
     
/*
run:
 
"age"
 
*/ 
 

 



answered Mar 2, 2025 by avibootz
0 votes
let person = {
    id: 838209872,
    name: "John",
    age: 46,
    city: "New York"
};

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

console.log(firstKey);
 
  
     
/*
run:
 
"age"
 
*/ 

 



answered Mar 2, 2025 by avibootz

Related questions

2 answers 97 views
1 answer 155 views
1 answer 133 views
1 answer 127 views
1 answer 119 views
...