Debugging with Console & DevTools

How could you track when and where the 'counter' variable changes using DevTools?
let counter = 0;

function incrementCounter() {
  counter++;
  updateUI(counter);
}
Next Question (23/40)