Debugging with Console & DevTools

If this function is throwing an error with certain inputs, what type of breakpoint would be most efficient for debugging?
function calculateTotal(items) {
  let total = 0;
  for (let i = 0; i < items.length; i++) {
    total += items[i].price * items[i].quantity;
  }
  return total;
}
Next Question (15/40)