|
|
|
|
|
by philippta
121 days ago
|
|
It's not too diffcut in the browser either. Consider how often you're making copies of your data and try to reduce it. For example: - for loops over map/filter - maps over objects - .sort() over .toSorted() - mutable over immutable data - inline over callbacks - function over const = () => {} Pretty much, as if you wrote in ES3 (instead of ES5/6) |
|