const adUnits = [
`
`,
`
`,
`
`,
`
`
];
let currentAdIndex = 0;
const container = document.getElementById(“ad-rotation-container”);
function loadAd(index) {
container.innerHTML = adUnits[index];
(adsbygoogle = window.adsbygoogle || []).push({});
}
// Load first ad
loadAd(currentAdIndex);
// Rotate every 35 seconds
setInterval(() => {
currentAdIndex = (currentAdIndex + 1) % adUnits.length;
loadAd(currentAdIndex);
}, 35000); // 35000ms = 35 seconds