0
I dudnt understood the arguments concept in functions can any one explain??
2 Antworten
+ 7
hello ch nani, you seem to have made two exact same threads,
https://www.sololearn.com/Discuss/1650172
would you mind deleting one?
+ 2
Argument is is information passed to function when calling it. Ex.:
function example (input)/*here it is defined*/{
console.log(input)
}
example("string")/*here it is passed*/