Uber interview question

When you run into Javascript performance issues, what steps do you take?

Interview Answer

Anonymous

21 Jan 2019

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.

1