What are Variables in TypeScript
In this blog we can see variables in TypeScript . Variables in TypeScript : TypeScript variables can be referred to by a name called an identifier and are designated storage sites to hold a type of or dynamic kind of value. Syntax : var <identifier> [: type-annotation] [= value] ...