Created
April 28, 2022 19:43
-
-
Save Akifcan/e064ebb9994bd006980d96f2a63c3612 to your computer and use it in GitHub Desktop.
arguments example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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