document.getElementById('game').addEventListener('click', function startGame() {
console.log('Game is starting!'); // name of the function is given just for debugging purposes
});
What is the scope of the function startGame? Where is this function accessible(Where it can be called) ?