typescript variables code example
Example 1: how to declare variable in typescript
const variableSample: number = 0;
let variableSample: number = 0;
Example 2: angular type of string
if(typeof myVariable === 'string'){
//do
}
const variableSample: number = 0;
let variableSample: number = 0;
if(typeof myVariable === 'string'){
//do
}