Is it bad javascript practice to not assign a newly created object to a variable if you\'re never going to access it?
For example:
for(var i=0;i
It seems like your constructor is doing something else besides creating/initializing an object.
It would be a cleaner solution to implement that extra functionality into a function or method.
Constructors should be used to create and initialize objects.