What does this local-observation calculation print?

from Technical debt
Node 24 beginner 2 min

What does this local-observation calculation print?

JavaScript
const debt = {
  changesPerQuarter: 6,
  extraMinutesPerChange: 40,
};

const interestHours =
  (debt.changesPerQuarter * debt.extraMinutesPerChange) / 60;

console.log(`${interestHours} hours per quarter`);
Open in playground
Report an error