Skip to content

Instantly share code, notes, and snippets.

@mattapperson
Last active May 28, 2020 14:38
Show Gist options
  • Save mattapperson/4aec486388ed0796fd1bd103f96a020b to your computer and use it in GitHub Desktop.
Save mattapperson/4aec486388ed0796fd1bd103f96a020b to your computer and use it in GitHub Desktop.
function myFunction(buttonEl, rowID) {
// ... do something with rowID
}
<button onclick="myFunction(this, 'rowID')">
// Another closure
function myFunction(rowID) {
return function(name) {
// ... do something with rowID and name
}
}
var foo = myFunction('rowID);
foo('matt')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment