Among all the elements of the UI framework you have worked on, which was the most difficult?
Frontend
interface User { id: number; name: string; email: string; role: "admin" | "user"; settings: { theme: "dark" | "light"; notifications: boolean; }; } type CreateUser = Omit<User, 'id'> type UpdateUser =
// [phone] function getMoney(amount) { // Твой код здесь } console.log(getMoney(4650));
Do you know what GraphQL is?
When will you use interface yourself, and when type? Why do you prefer type?
In TypeScript, types can be declared using the interface keyword and the type keyword. Briefly, what is the difference?
Tell about yourself: what have you been doing recently, why are there no entries in your resume after December 2024?
interface User { id: number; name: string; email: string; role: "admin" | "user"; settings: { theme: "dark" | "light"; notifications: boolean; }; } type CreateUser =
Do you know what gRPC (Google Remote Procedure Call) is?