Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created September 7, 2019 13:53
Show Gist options
  • Save indreklasn/ca600037e006478049d9b7fed74ee4dc to your computer and use it in GitHub Desktop.
Save indreklasn/ca600037e006478049d9b7fed74ee4dc to your computer and use it in GitHub Desktop.
function debugThis(a, b) {
return function(c) {
debugger;
return a + c
}
}
debugThis(1, 2)(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment