Skip to content

Instantly share code, notes, and snippets.

@Akifcan
Created April 28, 2022 19:43
Show Gist options
  • Save Akifcan/e064ebb9994bd006980d96f2a63c3612 to your computer and use it in GitHub Desktop.
Save Akifcan/e064ebb9994bd006980d96f2a63c3612 to your computer and use it in GitHub Desktop.
arguments example
function y(z){
console.log(arguments.length)
}
var x = {
length: 5,
method: function(y){
console.log(arguments.length)
}
}
x.method('akif', 'kara', y('demo', 'hiç', 'arkadaşım', 'yok'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment