In the ES6, if I make a class and create an object of that class, how do I check that the object is that class?
I can't just use typeof
because the objects are still "object"
. Do I just compare constructors?
Example:
class Person {
constructor() {}
}
var person = new Person();
if ( /* what do I put here to check if person is a Person? */ ) {
// do stuff
}