Type Casting in TypeScript
Sometimes, in TypeScript, something will have an unknown type where TypeScript can't discern the specific type something should be. At it's most basic, this can occur when a variable is simply given the type unknown. For example:
let text:unknown = "...
fjolt.hashnode.dev2 min read