When you run into Javascript performance issues, what steps do you take?
Anonymous
Do performance profiling with browser dev tools and see which functions take too long to run, dig into the stack trace for those. Check if things can be parallelized. Use workers where appropriate.
Check out your Company Bowl for anonymous work chats.