Skip to content

Instantly share code, notes, and snippets.

@dgeibi
Last active May 1, 2024 21:04
Show Gist options
  • Select an option

  • Save dgeibi/2ca7d891ac7d961b8d1e32fdf8929d11 to your computer and use it in GitHub Desktop.

Select an option

Save dgeibi/2ca7d891ac7d961b8d1e32fdf8929d11 to your computer and use it in GitHub Desktop.
class Class {
w(config) {
config = arguments[1]; config.url = arguments[0]; console.log(arguments[1],arguments[0]);
}
}
new Class().w('xxx', {})
function fn(config) { config = arguments[1]; config.url = arguments[0]; console.log(arguments[1],arguments[0]); }
fn('xxx', {})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment