Chrome Dev Tools

2021-8-25 Less than 1 minute

# Chrome Dev Tools

# What are the main ways to write information to the console? Why/when should you use each style.

console log and debugging are ways to write information to the console. You can use console log after you write a function to test if it works, and use debugger to see where your code went wrong.

# Which tab allows you to see the breakdown of HTML/CSS and how can this tab be useful when debugging HTML?

The Element tab shows you a breakdown of HTML/CSS. What you input can be immediately seen to help assist with debugging.

# Outside of writing everything to the console, what is a better way to debug your code?

The Debugger. You can view your call stack, breakpoints you've added, and even add break points.

# Daily Challenge

Here is the daily challenge for day 8. Rock Paper Scissors (opens new window)

Last update: September 12, 2021 19:59
Contributors: Derek Shain