Skip to content

Instantly share code, notes, and snippets.

@Kcko
Created February 7, 2025 14:37
Show Gist options
  • Save Kcko/3beefe67576a903037b475d9f330244d to your computer and use it in GitHub Desktop.
Save Kcko/3beefe67576a903037b475d9f330244d to your computer and use it in GitHub Desktop.
// Casting = přetypování v TS nelze
// Asserce je explicitni určený typu
let x: unknown;
x = [];
// 1
let result = (x as number[]).push(111);
// 2
let result = (<number[]>x).push(111);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment