Problem 38. Write a JavaScript program to keep fetching contents of a website (every 5 seconds).

let url = () => {
    window.location = 'https://www.apnacollege.in/notes';
    console.log(url);
}
setInterval(url, 5000);