addEventListenerで外部関数に引数をわたす

<script>

const userName = 'Ken';
const target = document.getElementById('start-button');

function sayHello(e){
    console.log('Hello, ' + this.name);
};

target.addEventListener('click', {name: userName, handleEvent: sayHello});

</script>