typescript print data type code example
Example 1: typescript get type
if (typeof abc === "number") {
// do something
}
Example 2: angular type of string
if(typeof myVariable === 'string'){
//do
}
if (typeof abc === "number") {
// do something
}
if(typeof myVariable === 'string'){
//do
}