typescript check type of variable code example
Example 1: typescript check type of variable
if (fooOrBar instanceof Foo){
// TypeScript now knows that `fooOrBar` is `Foo`
}
Example 2: typescript check type
mySprite instanceof Sprite;
Example 3: typescript get type
if (typeof abc === "number") {
// do something
}