Skip to content

Instantly share code, notes, and snippets.

@CodHeK
Created June 14, 2020 16:52
Show Gist options
  • Save CodHeK/aad2149511b79a88178d7878c8152d72 to your computer and use it in GitHub Desktop.
Save CodHeK/aad2149511b79a88178d7878c8152d72 to your computer and use it in GitHub Desktop.
const f = (...args) => {
console.log(args); // [1, 2]
}
const g = f.bind(null, 1);
g(2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment