typescript instanceof instance of class object

Solutions on MaxInterview for typescript instanceof instance of class object by the best coders in the world

showing results for - "typescript instanceof instance of class object"
Ylan
16 Aug 2018
1mySprite instanceof Sprite;
2
3if (mySprite instanceof Sprite)
4{
5  print("Hello!");
6}