debugger Statement Usage

What happens when this code is executed with DevTools closed?
function calculateTotal(items) {
  debugger;
  let total = 0;
  for (let i = 0; i < items.length; i++) {
    total += items[i].price;
  }
  return total;
}
Next Question (2/20)