What’s the first thing you think and feel when you’re debugging or building something new and realize that the solution is not searchable. It may take an hour to even figure out what the underlying issue is, let alone fix it. Me? I typically get overwhelmed by the 40 tabs of Stack Overflow I have open.
Tech update: TDD actually means Tear Driven Development. Methodology used by devs who need an emotial release
Alt: Alice from Alice in wonderland crying large tears16:31 PM - 07 Jul 2019
Top comments (4)
If you have 40 tabs open, close them all and start from the very bottom. Start outputting the value of your variables, make sure the correct data is being passed around. This will also help you determine where the issue lies.
Sometimes I use pen and paper to visualize data flow.
First thought: Check the MDN. Second THought: Check Stack Overflow. Third thought: check the source. But I'm always in hunter mode.
I usually do end up with a few windows for different parts of the problem.