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
That’s absolutely fine if you don’t need to use it again.