Common JavaScript Debugging Problems and How to Solve Them
When working with any programming language, there will be a phase where you would have to deal with annoying bugs and errors. JavaScript… (more…)
Read more »
Every time I return from ruby/python to JavaScript I’ll fall into the same mistake of writing arr[-1] and not getting the last item. JavaScript has a weird way of stringifying object keys which leads to stringifying array indexes which renders the above n… Read more