function clickMe(e){ //e is the event }
With the ES6, you can do in a shorter way like this:
const clickMe = (parameter) => (event) => { // Do something }
And use it: