Suppose you want to modify the following JavaScript event ha…
Suppose you want to modify the following JavaScript event handler to use arrow function syntax:form.onclick = function() { console.log(“The user clicked the form!”);}What should you place in the blank in the following modified version?form.onclick = _____