Skip to content

Instantly share code, notes, and snippets.

@mattlo
Last active December 14, 2017 21:46
Show Gist options
  • Save mattlo/c1250c0daccd7980d09bc9b27dec41bf to your computer and use it in GitHub Desktop.
Save mattlo/c1250c0daccd7980d09bc9b27dec41bf to your computer and use it in GitHub Desktop.
function a(b) {
console.log(b);
}
a(1234); // 1234
const c = a.bind(null, 5678); // Function a ...
c(); // 5678
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment