Suppose you have a routine like the following to wire up click event handlers
getElements(".board>div").forEach(function(elem){
elem.addEventListener("click", handleClick);
});
And then in the handler, you need to work with the sender (i.e. this)
function handleClick(){
if(this.innerText.toLowerCase() !== "x"){
...
How do you use this
in this scenario without a jshint violation/warning?