Basic data types in typescript
There are three commonly used primitives data types in Typescript: boolean, string, and number
string can hold like "Hello, Kishar".
let name : string ="Hello, kishar"
If you try to assign number, it will throw an error.
The next commonly used data t...
kishar.hashnode.dev1 min read