Different types of typescript
Number :
It is used for both integers and floating-point numbers representation.
let val1: number = 26;
let val2: number = 42;
// We can also use number without specifying it's type
// like -
let val3 = 64;
String :
It represents the sequence ...
laksh.hashnode.dev3 min read