Sobes.tech

Among all the elements of the UI framework you have worked on, which was the most difficult?

269

interface User { id: number; name: string; email: string; role: "admin" | "user"; settings: { theme: "dark" | "light"; notifications: boolean; }; } type CreateUser = Omit<User, 'id'> type UpdateUser =

198

// [phone] function getMoney(amount) { // Твой код здесь } console.log(getMoney(4650));

165

When will you use interface yourself, and when type? Why do you prefer type?

159

In TypeScript, types can be declared using the interface keyword and the type keyword. Briefly, what is the difference?

153

Tell about yourself: what have you been doing recently, why are there no entries in your resume after December 2024?

150

interface User { id: number; name: string; email: string; role: "admin" | "user"; settings: { theme: "dark" | "light"; notifications: boolean; }; } type CreateUser =

148