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 return10
? – 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
4 Answers
Reset to default 6The 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
}
}