I am writing a code that solves equations for users. The user will be able to enter matrices, vectors and such. Right now, as I solve those equations, I write the solution to a table with each row representing any given variable or equation. The javascript object that was used to hold the equation during calculation is destroyed. I did this on purpose to prevent large arrays of data being stored in memory and potentially slowing down the script. As an array is needed later, it is read into an object from the appropriate table row.
このようにDOMにメモリを保持することと、メモリ内のオブジェクトにメモリを保持することとの比較はどうでしょうか。これらをDOMではなくオブジェクトとしてメモリに保持することで、コードの実行が遅くなるリスクが高くなりますか?また、これらのオブジェクトにはコードの複数の部分からアクセスする必要があるため、これらはグローバルオブジェクトである必要があります。右?