Posts tagged as: debugging

Hoisting, let and gimmicks

Let’s jump straight into the code.

Read More +

Debugging CSS

When it comes to debugging in web browser developers almost always think of the JavaScript, console.logs and breakpoints. That’s pretty straightforward, unlike trying to figure out what went wrong in a complex layout.

Read More +

Debugging JavaScript: various breakpoints

Most of the developers know that you can stop the execution of a script by either placing debugger; in the code or clicking on a specific line in a browser’s debug tool. That’s just a tip of the debugging iceberg.

Read More +