最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

How to count the number of objects in a constructor javascript - Stack Overflow

programmeradmin0浏览0评论

Im working with javascript and would like to know the number of objects inside of a constructor.

I have this:

var EventData = function(ID, Name, StartDate, StartTime, EndDate, EndTime, Location, Notes){
  this.type = "event";
  this.id = ID;
  this.name = Name;
  this.startDate = StartDate;
  this.startTime = StartTime;
  this.endDate = EndDate;
  this.endTime = EndTime;
  this.location = Location;
  this.notes = Notes;
};
EventData.prototype.count = function(){
  return //some code;
};

And i want to call something like this:

var Start = function(){
  var thisEventData = new EventData(1,"Bill", 1,1,1,1, "Home", "N/A");
  console.log(thisEventData.count());
};

Where thisEventData.count() would return 10.

Im working with javascript and would like to know the number of objects inside of a constructor.

I have this:

var EventData = function(ID, Name, StartDate, StartTime, EndDate, EndTime, Location, Notes){
  this.type = "event";
  this.id = ID;
  this.name = Name;
  this.startDate = StartDate;
  this.startTime = StartTime;
  this.endDate = EndDate;
  this.endTime = EndTime;
  this.location = Location;
  this.notes = Notes;
};
EventData.prototype.count = function(){
  return //some code;
};

And i want to call something like this:

var Start = function(){
  var thisEventData = new EventData(1,"Bill", 1,1,1,1, "Home", "N/A");
  console.log(thisEventData.count());
};

Where thisEventData.count() would return 10.

Share Improve this question edited Apr 15, 2015 at 21:09 Devcon asked Apr 15, 2015 at 21:06 DevconDevcon 7972 gold badges9 silver badges24 bronze badges 7
  • 1 "Number of objects inside of a constructor" doesn't make a lot of sense. You can count the enumerable properties of an object (regardless of where the properties came from) with Object.keys(obj).length. – Pointy Commented Apr 15, 2015 at 21:09
  • Uhm, you mean return 9, right ? – adeneo Commented Apr 15, 2015 at 21:09
  • You don't have to prototype a count function. Is simple as EventData.length – manuerumx Commented Apr 15, 2015 at 21:11
  • So it would return 10, but why would it return 10 ? – adeneo Commented Apr 15, 2015 at 21:17
  • I would need 10 if I was to include prototypes with the count. 8 would give me the number of parameters asked. – Devcon Commented Apr 15, 2015 at 21:28
 |  Show 2 more ments

4 Answers 4

Reset to default 6

The most natural way in this case would be to store parameters count in some property (maybe private). I'm not sure why you need this, but, yea, something like this:

var EventData = function (ID, Name, StartDate, StartTime, EndDate, EndTime, Location, Notes) {
    this._paramsCount = arguments.length;
    this.type = "event";
    this.id = ID;
    this.name = Name;
    this.startDate = StartDate;
    this.startTime = StartTime;
    this.endDate = EndDate;
    this.endTime = EndTime;
    this.location = Location;
    this.notes = Notes;
};
EventData.prototype.count = function () {
    return this._paramsCount;
};

UPD. Based on the edited question, look like you want to calculate number of own properties of the instance. In this case you would use convenient Object.keys method which returns an array of property names.

EventData.prototype.count = function () {
    return Object.keys(this).length;
};

Just get the properties of the EventData object as an array with Object.keys, and then the length of the array?

EventData.prototype.count = function(){
  return Object.keys(this).length;
};

If you want to know the number of canonical parameters, use the Function.length property, in your case:

EventData.length

or

thisEventData.constructor.length

Note that it won't count additional parameters (variable arguments) since it infers the count from the constructor object.

If you want to know the property count of the constructed object, use Object.keys:

Object.keys(thisEventData).length

This will give you the count of the own properties (excluding the prototype chain).

Or just write your own customizable logic if you need something else, for instance if you want non-falsey objects:

function getPropertyCount(obj, withPrototypeChain) {
    var prop;
    var count = 0;

    for (prop in obj) {
        if ((withPrototypeChain || obj.hasOwnProperty(prop)) && obj[prop])
            ++count;
    }

    return count;
}

To build a bit on the accepted answer:

export class Person {
      constructor (name, age) {
        if (arguments.length !== 2) {
          throw new Error('invalid Person argument count')
        }
        this.name = name
        this.age = age 
      }
    }
发布评论

评论列表(0)

  1. 暂无评论