单项选择题

var Apple = function(){ this.count = 1}Apple.prototype.do = function(){ return this.count++;}var a = new Apple();console.log(a.do())程序运行结果是()

A.2
B.1
C.undefined
D.null