I'm rather new to JS.
I have a small program that builds a table of information. The table is built using JS. I have close to 100+ numerical items (INTEGERS) that need to go through a math equation before they get displayed in the table (REAL). I'm thinking about rebuilding the whole JS application. Right now, I stuff the INTEGERS into arrays and then perform math on each value in the array. I'm wondering if it makes more sense to build an OBJECT for each item? Is there a practical limit to the number of objects that can be instantiated?
mike
I have a small program that builds a table of information. The table is built using JS. I have close to 100+ numerical items (INTEGERS) that need to go through a math equation before they get displayed in the table (REAL). I'm thinking about rebuilding the whole JS application. Right now, I stuff the INTEGERS into arrays and then perform math on each value in the array. I'm wondering if it makes more sense to build an OBJECT for each item? Is there a practical limit to the number of objects that can be instantiated?
mike