declare variable with type in typescript4 code example
Example: how to declare variable in typescript
const variableSample: number = 0;
let variableSample: number = 0;
const variableSample: number = 0;
let variableSample: number = 0;