You may also enjoy
can you solve this typescript error quickly
1 minute read
```typescript type User = { name: string age?: number active?: boolean }
how to over-engineer a feature manager - finding the right balance
3 minute read
Simplifying Feature Management with Balanced SOLID Principles
typescript/javascript function can use returned value in arguments
1 minute read
```typescript function foo({ handler }: { handler: () => void }) { handler() return { bar() { return ‘the string bar’ }, } }
Compare Feature Flags and Settings
1 minute read
Almost all SaaS systems need to implement Feature Flags and Settings(or Configurations) somehow. When people talk about them, they can be mixed together. The...