Understanding TypeScript's Special Types: any, unknown, void, and never
The any Type The any type instructs the TypeScript compiler to bypass static type checking. Variables of type any can be reassigned to values of any other type. You can call arbitrary methods or access properties on an any value with out compile-time errors. The any type is assignable to any other t...