Answers for "typescript return object with specific keys"

3

typescript object key from other object

const object: {
  [K in keyof MyInterface]: any
} = {}
Posted by: Guest on February-10-2021
0

typescript object get value by key

myObj = {
  policy: {
    index: 1,
    page: "/policy"
  },
  purchase: {
    index: 2,
    page: "/purchase"
  }
}

// get value on key
Object.keys(myObj).forEach(key => {
    if (myObj[key].index === 2) {
        console.log("Found.");
    }
});

// If you want to stop the search when one was found
Object.keys(myObj).some(key => myObj[key].index === 2);
Posted by: Guest on September-15-2021

Code answers related to "typescript return object with specific keys"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language