有没有办法在 JS 对象中创建“静态”成员?
function Person(){
}
Person.prototype.age = null;
Person.prototype.gender = null;
我想将personsCount添加为静态成员,这可能吗?
有没有办法在 JS 对象中创建“静态”成员?
function Person(){
}
Person.prototype.age = null;
Person.prototype.gender = null;
我想将personsCount添加为静态成员,这可能吗?