Skip to content

Instantly share code, notes, and snippets.

@pfftdammitchris
Created January 16, 2026 04:24
Show Gist options
  • Select an option

  • Save pfftdammitchris/bdfed67058fa52084c62ceddfe85c4e0 to your computer and use it in GitHub Desktop.

Select an option

Save pfftdammitchris/bdfed67058fa52084c62ceddfe85c4e0 to your computer and use it in GitHub Desktop.
The Power of TypeScript's Satisfies Operator - snippet-26.ts
// Don't do this - unnecessary complexity
const name = 'John' satisfies string
// Just do this
const name: string = 'John'
// Or simply: const name = 'John'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment