script. $(document).ready(function getActiveUsers() { setInterval(function getActiveUsersInterval() { $.ajax({ type : 'GET', url : '/api/about/get-active-users', }) .done(function({ activeUsers }) { document.getElementById('active-user-count').innerHTML = `

${activeUsers} people are using freeCodeCamp right now

`; }) }, 2000) })