多项选择题

function Person(){}Person.prototype={say:function(){console.log(’Hello,’+this.name);}};let xm=new Person();针对以上代码,打印结果为true的有?()

A.person.constructor==Person
B.person.constructor==Object
C.person instanceof Person==true
D.person instanceof Object==true