TypeScript #7: Any type in TypeScript

Опубликовано: 16 Январь 2025
на канале: Codehelp by Sahil
62
4

In this video we will talk about a very special type provided by typescript which is called as any or also referred as dynamic type sometimes. Which means that the variable being declared of type any can be anything either a boolean string array or object as well. Or maybe it could be a string initially and then later on changed to boolean or any other type.

Now lets see how can we create a variable of type any .