TypeScript Advance APIs
1. Pick
We know Types and Interfaces in Typescript so far. Both works similar providing the structure for our objects. However, Interfaces has additional flexibility of extending other interfaces.
interface User {
name: string;
age: number;
}
fu...
typescript-apis.hashnode.dev5 min read